├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── extras ├── data-tests │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs └── simple-bench │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── main.rs │ └── random.rs ├── fuzz ├── Cargo.toml ├── float.dict └── fuzz_targets │ ├── fast_float.rs │ └── roundtrip_f64.rs ├── src ├── binary.rs ├── common.rs ├── decimal.rs ├── float.rs ├── lib.rs ├── number.rs ├── parse.rs ├── simple.rs └── table.rs └── tests ├── test_api.rs ├── test_basic.rs ├── test_exhaustive.rs └── test_random.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/README.md -------------------------------------------------------------------------------- /extras/data-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/data-tests/Cargo.toml -------------------------------------------------------------------------------- /extras/data-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/data-tests/README.md -------------------------------------------------------------------------------- /extras/data-tests/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/data-tests/src/main.rs -------------------------------------------------------------------------------- /extras/simple-bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/simple-bench/Cargo.toml -------------------------------------------------------------------------------- /extras/simple-bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/simple-bench/README.md -------------------------------------------------------------------------------- /extras/simple-bench/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/simple-bench/src/main.rs -------------------------------------------------------------------------------- /extras/simple-bench/src/random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/extras/simple-bench/src/random.rs -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/float.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/fuzz/float.dict -------------------------------------------------------------------------------- /fuzz/fuzz_targets/fast_float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/fuzz/fuzz_targets/fast_float.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/roundtrip_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/fuzz/fuzz_targets/roundtrip_f64.rs -------------------------------------------------------------------------------- /src/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/binary.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/decimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/decimal.rs -------------------------------------------------------------------------------- /src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/float.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/number.rs -------------------------------------------------------------------------------- /src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/parse.rs -------------------------------------------------------------------------------- /src/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/simple.rs -------------------------------------------------------------------------------- /src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/src/table.rs -------------------------------------------------------------------------------- /tests/test_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/tests/test_api.rs -------------------------------------------------------------------------------- /tests/test_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/tests/test_basic.rs -------------------------------------------------------------------------------- /tests/test_exhaustive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/tests/test_exhaustive.rs -------------------------------------------------------------------------------- /tests/test_random.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldanor/fast-float-rust/HEAD/tests/test_random.rs --------------------------------------------------------------------------------