mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 13:18:59 +08:00
Add our fast-float crate
This adds a dependency on https://github.com/fish-shell/fast-float-rust which is our forked fast-float crate for parsing.
This commit is contained in:
parent
8bb1bb8ae1
commit
0e68405ccd
6
fish-rust/Cargo.lock
generated
6
fish-rust/Cargo.lock
generated
|
@ -347,6 +347,11 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fast-float"
|
||||
version = "0.2.0"
|
||||
source = "git+https://github.com/fish-shell/fast-float-rust?branch=fish#9590c33a3f166a3533ba1cbb7a03e1105acec034"
|
||||
|
||||
[[package]]
|
||||
name = "fastrand"
|
||||
version = "1.9.0"
|
||||
|
@ -367,6 +372,7 @@ dependencies = [
|
|||
"cxx-build",
|
||||
"cxx-gen",
|
||||
"errno",
|
||||
"fast-float",
|
||||
"inventory",
|
||||
"libc",
|
||||
"lru",
|
||||
|
|
|
@ -7,6 +7,7 @@ rust-version = "1.67"
|
|||
[dependencies]
|
||||
widestring-suffix = { path = "./widestring-suffix/" }
|
||||
pcre2 = { git = "https://github.com/fish-shell/rust-pcre2", branch = "master", default-features = false, features = ["utf32"] }
|
||||
fast-float = { git = "https://github.com/fish-shell/fast-float-rust", branch="fish" }
|
||||
|
||||
autocxx = "0.23.1"
|
||||
bitflags = "1.3.2"
|
||||
|
|
Loading…
Reference in New Issue
Block a user