[package] authors = ["Paul Mason "] build = "build.rs" categories = ["science","mathematics","data-structures"] description = "Decimal number implementation written in pure Rust suitable for financial and fixed-precision calculations." documentation = "https://docs.rs/rust_decimal/" edition = "2021" exclude = [ "tests/generated/*" ] keywords = ["decimal","financial","fixed","precision","number"] license = "MIT" name = "feldera_rust_decimal" readme = "./README.md" repository = "https://github.com/paupino/rust-decimal" rust-version = "1.60" version = "1.33.1-feldera.1" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] arbitrary = { default-features = false, optional = true, version = "1.0" } arrayvec = { default-features = false, version = "0.7" } borsh = { default-features = false, features = ["derive", "unstable__schema"], optional = true, version = "1.1.1" } bytes = { default-features = false, optional = true, version = "1.0" } diesel1 = { default-features = false, optional = true, package = "diesel", version = "1.0" } diesel2 = { default-features = false, optional = true, package = "diesel", version = "2.1" } ndarray = { default-features = false, optional = true, version = "0.15.6" } num-traits = { default-features = false, features = ["i128"], version = "0.2" } postgres = { default-features = false, optional = true, version = "0.19" } proptest = { default-features = false, optional = true, features = ["std"], version = "1.0" } rand = { default-features = false, optional = true, version = "0.8" } rkyv = { default-features = false, optional = true, version = "0.7.45" } rocket = { default-features = false, optional = true, version = "0.5.0-rc.3" } rust_decimal_macros = { default-features = false, optional = true, version = "1.33" } # This needs to be the n-1 published version serde = { default-features = false, optional = true, version = "1.0" } serde_json = { default-features = false, optional = true, version = "1.0" } tokio-postgres = { default-features = false, optional = true, version = "0.7" } [dev-dependencies] bincode = { default-features = false, version = "1.0" } bytes = { default-features = false, version = "1.0" } criterion = { default-features = false, version = "0.5" } csv = "1" futures = { default-features = false, version = "0.3" } rand = { default-features = false, features = ["getrandom"], version = "0.8" } rust_decimal_macros = { default-features = false, version = "1.33" } serde = { default-features = false, features = ["derive"], version = "1.0" } serde_json = "1.0" tokio = { default-features = false, features = ["macros", "rt-multi-thread", "test-util"], version = "1.0" } version-sync = { default-features = false, features = ["html_root_url_updated", "markdown_deps_updated"], version = "0.9" } [features] default = ["serde", "std"] macros = ["dep:rust_decimal_macros"] borsh = ["dep:borsh", "std"] c-repr = [] # Force Decimal to be repr(C) db-diesel-mysql = ["db-diesel1-mysql"] db-diesel-postgres = ["db-diesel1-postgres"] db-diesel1-mysql = ["diesel1/mysql", "std"] db-diesel1-postgres = ["diesel1/postgres", "std"] db-diesel2-mysql = ["diesel2/mysql", "std"] db-diesel2-postgres = ["diesel2/postgres", "std"] db-postgres = ["dep:bytes", "dep:postgres", "std"] db-tokio-postgres = ["dep:bytes", "dep:postgres", "std", "dep:tokio-postgres"] legacy-ops = [] maths = [] maths-nopanic = ["maths"] ndarray = ["dep:ndarray"] proptest = ["dep:proptest"] rand = ["dep:rand"] rkyv-safe = ["rkyv/validation"] # Note that rkyv-16, rkyv-32, and rkyv-64 are mutually exclusive. rkyv-16 = ["rkyv", "rkyv?/size_16"] rkyv-32 = ["rkyv", "rkyv?/size_32"] rkyv-64 = ["rkyv", "rkyv?/size_64"] rocket-traits = ["dep:rocket"] rust-fuzz = ["dep:arbitrary"] serde = ["dep:serde"] serde-arbitrary-precision = ["serde-with-arbitrary-precision"] serde-bincode = ["serde-str"] # Backwards compatability serde-float = ["serde-with-float"] serde-str = ["serde-with-str"] serde-with-arbitrary-precision = ["serde", "serde_json/arbitrary_precision", "serde_json/std"] serde-with-float = ["serde"] serde-with-str = ["serde"] std = ["arrayvec/std", "borsh?/std", "bytes?/std", "rand?/std", "rkyv?/std", "serde?/std", "serde_json?/std"] tokio-pg = ["db-tokio-postgres"] # Backwards compatability [[bench]] harness = false name = "comparison" path = "benches/comparison.rs" [workspace] members = [ ".", "./macros" ] resolver = "2"