mirror of
https://github.com/duhanbalci/dexpr.git
synced 2026-07-01 16:19:16 +00:00
42 lines
796 B
TOML
42 lines
796 B
TOML
[package]
|
|
name = "dexpr"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
incremental = true
|
|
debug = true
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|
|
split-debuginfo = "packed"
|
|
opt-level = 3
|
|
overflow-checks = false
|
|
panic = "unwind"
|
|
|
|
[dependencies]
|
|
rust_decimal = { version = "1.41.0", features = ["maths"] }
|
|
rust_decimal_macros = "1.40.0"
|
|
rand = "0.10.0"
|
|
smallvec = "1.15.1"
|
|
rustc-hash = "2.1.2"
|
|
peg = "0.8.5"
|
|
smol_str = "0.3.6"
|
|
micromap = "0.3.0"
|
|
thiserror = "2.0.18"
|
|
bumpalo = "3.20.2"
|
|
indexmap = "2"
|
|
serde_json = "1"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8.2", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "my_benchmark"
|
|
harness = false
|