1
0
dust/dust-lang/Cargo.toml

53 lines
1.1 KiB
TOML

[package]
name = "dust-lang"
description = "Dust programming language library"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
annotate-snippets = "0.11.4"
colored = "2.1.0"
rand = "0.8.5"
serde = { version = "1.0.203", features = ["derive", "rc"] }
serde_json = "1.0.117"
getrandom = { version = "0.2", features = [
"js",
] } # Indirect dependency, for WASM builds
smartstring = { version = "1.0.1", features = [
"serde",
], default-features = false }
tracing = "0.1.41"
crossbeam-channel = "0.5.14"
smallvec = { version = "1.13.2", features = ["serde", "const_generics"] }
[dev-dependencies]
criterion = { version = "0.3.4", features = ["html_reports"] }
[[bench]]
name = "addictive_addition"
harness = false
[[bench]]
name = "fibonacci"
harness = false
[[bench]]
name = "threads"
harness = false
[[test]]
name = "add"
path = "tests/math/add.rs"
[[test]]
name = "subtract"
path = "tests/math/subtract.rs"
[[test]]
name = "multiply"
path = "tests/math/multiply.rs"