# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "moneta" version = "0.5.0" authors = ["Michael Amrhein "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Currency-safe computations with money amounts." homepage = "https://github.com/mamrhein/money.rs" documentation = "https://docs.rs/moneta/" readme = "README.md" keywords = [ "money", "currency", "exchange", ] categories = [ "data-structures", "mathematics", ] license-file = "LICENSE.TXT" repository = "https://github.com/mamrhein/money.rs" [lib] name = "moneta" path = "src/lib.rs" [[test]] name = "test_exchange_rate" path = "tests/test_exchange_rate.rs" [[test]] name = "test_money" path = "tests/test_money.rs" [[test]] name = "test_serde" path = "tests/test_serde.rs" [dependencies.fpdec] version = "0.10.1" [dependencies.fpdec-core] version = "0.8.0" [dependencies.quantities] version = "0.13" features = ["fpdec"] [dependencies.serde] version = "1" features = ["derive"] optional = true [dev-dependencies.serde] version = "1" [dev-dependencies.serde_json] version = "1.0" [features] default = ["std"] serde = [ "dep:serde", "quantities/serde", ] std = []