mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- units.parse, units.parse_bytes - json.is_valid, json.marshal, json.unmarshal - yaml.is_valid, yaml.marshal, yaml.unmarshal - object.subset - set_diff * Also print number of errors due to each missing function * Also lock down fully passing OPA suites Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
36 lines
669 B
TOML
36 lines
669 B
TOML
[package]
|
|
name = "regorus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.66"
|
|
semver = "1.0.20"
|
|
ordered-float = "3.4.0"
|
|
serde = {version = "1.0.150", features = ["derive", "rc"] }
|
|
serde_json = "1.0.89"
|
|
serde_yaml = "0.9.16"
|
|
log = "0.4.17"
|
|
env_logger="0.10.0"
|
|
lazy_static = "1.4.0"
|
|
rand = "0.8.5"
|
|
data-encoding = "2.4.0"
|
|
|
|
[dev-dependencies]
|
|
clap = { version = "4.4.7", features = ["derive"] }
|
|
test-generator = "0.3.1"
|
|
walkdir = "2.3.2"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.66"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[[test]]
|
|
name="opa"
|
|
harness=false
|
|
test=false
|