Still necessary as the stdlib has no `parse_partial`.
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
[[package]]
-name = "fast-float"
-version = "0.2.0"
+name = "fast-float2"
+version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
+checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
[[package]]
name = "getrandom"
name = "narcissus-core"
version = "0.1.0"
dependencies = [
- "fast-float",
+ "fast-float2",
"memchr",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-fast-float = "0.2"
+fast-float2 = "0.2.3"
memchr = { version = "2" }
\ No newline at end of file
use std::io::Read;
-use fast_float::parse_partial;
+use fast_float2::parse_partial;
const MAX_LINE_SIZE: usize = 8 * 1024;