[package] name = "atoi_radix10" version = "0.0.1" authors = ["Giles Cope ", "Ivan Tham "] edition = "2018" description = "Parse strings as base 10 integers quickly (especially u64/u128)" license = "MIT OR Apache-2.0" keywords = ["parse", "atoi", "conversion", "integer"] categories = ["parsing"] repository = "https://github.com/gilescope/atoi_radix10" [features] default = [] nightly = [] simd = [] [dependencies] # log = "*" # env_logger = "*" # version="*", # safe_arch={ version="0.6", optional=true } #wide = { git="https://github.com/gilescope/wide.git", branch="i16x16", optional=true } #core_simd = { git="https://github.com/rust-lang/stdsimd.git", optional=true } [dev-dependencies] # Creating good test names: paste = "1.0" # Benchmarking: criterion = {version="0.3", features=["html_reports"]} #criterion-cycles-per-byte = "0.1" # These are for creating test strings (in no_std) heapless = "0.7" numtoa = "0.2.4" # Wasm testing: wasm-bindgen-test = "0.3" # We need to enable this as well for wasm: getrandom = { version = "0.2", features = ["js"] } rand = "0.8" [[bench]] name = "bench" harness = false