# 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" rust-version = "1.60" name = "string_calculator" version = "0.4.0" authors = ["Friquet Luca"] description = "A string calculator to compute formulas inside strings." readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/FriquetLuca/string_calculator" [profile.release] lto = true codegen-units = 1 strip = true [lib] name = "string_calculator" path = "src/lib.rs" [dependencies.num-complex] version = "0.4" optional = true [dependencies.rust_decimal] version = "1.35" features = ["maths"] optional = true default-features = false [features] default = [ "eval_decimal", "eval_f64", "eval_i64", "eval_complex", "eval_number", ] eval_complex = ["dep:num-complex"] eval_decimal = ["dep:rust_decimal"] eval_f64 = [] eval_i64 = [] eval_number = []