1[package] 2name = "minimal-lexical-correctness" 3version = "0.0.1" 4authors = ["Alex Huszagh <ahuszagh@gmail.com>"] 5edition = "2018" 6publish = false 7 8[dependencies.minimal-lexical] 9path = "../.." 10default-features = false 11features = [] 12 13[dependencies] 14rand_core = "0.3" 15rand_xorshift = "0.1" 16ryu = "1.0" 17rand = "0.4" 18serde = "1.0" 19serde_derive = "1.0" 20toml = "0.5" 21 22[features] 23default = ["std"] 24std = ["minimal-lexical/std"] 25compact = ["minimal-lexical/compact"] 26alloc = ["minimal-lexical/alloc"] 27nightly = ["minimal-lexical/nightly"] 28 29# Special testing binaries for the runtests.py scripts. 30[[bin]] 31name = "few_ones" 32path = "test-parse-random/few_ones.rs" 33 34[[bin]] 35name = "huge-pow10" 36path = "test-parse-random/huge-pow10.rs" 37 38[[bin]] 39name = "long-fractions" 40path = "test-parse-random/long-fractions.rs" 41 42[[bin]] 43name = "many-digits" 44path = "test-parse-random/many-digits.rs" 45 46[[bin]] 47name = "rand-f64" 48path = "test-parse-random/rand-f64.rs" 49 50[[bin]] 51name = "short-decimals" 52path = "test-parse-random/short-decimals.rs" 53 54[[bin]] 55name = "subnorm" 56path = "test-parse-random/subnorm.rs" 57 58[[bin]] 59name = "tiny-pow10" 60path = "test-parse-random/tiny-pow10.rs" 61 62[[bin]] 63name = "u32-small" 64path = "test-parse-random/u32-small.rs" 65 66[[bin]] 67name = "u64-pow2" 68path = "test-parse-random/u64-pow2.rs" 69 70[[bin]] 71name = "test-parse-golang" 72path = "test-parse-golang/main.rs" 73 74[[bin]] 75name = "test-parse-unittests" 76path = "test-parse-unittests/main.rs" 77 78# RNG TESTS 79 80[[bin]] 81name = "smoke-test" 82path = "rng-tests/smoke.rs" 83 84[[bin]] 85name = "f32-test" 86path = "rng-tests/f32.rs" 87