# 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 = "2018" name = "twofloat" version = "0.8.1" authors = [ "Andrew Tribick", "Individual contributors", ] build = false exclude = [ ".github", ".gitignore", "ci-workdir", "sollya", "scripts", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Double-double arithmetic functionality." readme = "README.md" keywords = [ "float", "precision", "numerics", "floating-point", "arithmetic", ] categories = [ "algorithms", "mathematics", "science", ] license = "BSD-3-Clause" repository = "https://github.com/ajtribick/twofloat" [package.metadata.docs.rs] all-features = true [lib] name = "twofloat" path = "src/lib.rs" test = true [[test]] name = "arithmetic_tests" path = "tests/arithmetic_tests.rs" [[test]] name = "base_tests" path = "tests/base_tests.rs" [[test]] name = "convert_tests" path = "tests/convert_tests.rs" [[test]] name = "explog_tests" path = "tests/explog_tests.rs" [[test]] name = "fraction_tests" path = "tests/fraction_tests.rs" [[test]] name = "hyperbolic_tests" path = "tests/hyperbolic_tests.rs" [[test]] name = "power_tests" path = "tests/power_tests.rs" [[test]] name = "serde_tests" path = "tests/serde_tests.rs" [[test]] name = "trigonometry_tests" path = "tests/trigonometry_tests.rs" [dependencies.hexf] version = "0.2" [dependencies.libm] version = "0.2.6" [dependencies.num-traits] version = "0.2.14" features = ["libm"] default-features = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde_test] version = "1.0" [features] default = [ "std", "math_funcs", ] math_funcs = [] std = [] [target.'cfg(all(windows, target_env = "gnu"))'.dependencies.libm] version = "0.2.6"