mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
ed3492fd7b
Number is implemented using rust_decimal::Decimal which uses a 96 bit mantissa. TODO: a) Support u64, i64 variants b) Determine desired semantics for floating-point c) Determine desired big integer length d) Explore other big int/big float crates Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
43 lines
879 B
TOML
43 lines
879 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"
|
|
serde = {version = "1.0.150", features = ["derive", "rc"] }
|
|
serde_json = {version = "1.0.89", features = ["arbitrary_precision"] }
|
|
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"
|
|
regex = "1.10.2"
|
|
num = "0.4.1"
|
|
rust_decimal = { version = "1.33.1", features = ["serde-with-arbitrary-precision", "serde_json", "maths"] }
|
|
|
|
[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
|
|
|
|
[[test]]
|
|
name="aci"
|
|
harness=false
|
|
test=false
|