[package] name = "steel_decimal" version = "1.0.0" edition.workspace = true license = "MIT OR Apache-2.0" authors.workspace = true description = "High-precision decimal arithmetic for Steel programming language" readme = "README.md" categories = ["science", "financial", "scripting"] keywords = ["decimal", "steel", "accounting", "precision"] [dependencies] steel-derive = { git = "https://github.com/mattwparas/steel.git", branch = "master", package = "steel-derive" } steel-core = { git = "https://github.com/mattwparas/steel.git", version = "0.6.0", features = ["anyhow", "dylibs", "sync"] } rust_decimal = { workspace = true } rust_decimal_macros = { workspace = true } regex = { workspace = true } thiserror = { workspace = true } [dev-dependencies] rstest = "0.25.0" tokio-test = "0.4.4" serial_test = "3.2.0" pretty_assertions = "1.4.1" tempfile = "3.20.0" proptest = "1.7.0" quickcheck = "1.0.3" criterion = { version = "0.6.0", features = ["html_reports"] }