fish-shell/fish-rust/Cargo.toml

72 lines
2.5 KiB
TOML
Raw Normal View History

2023-01-14 22:56:24 +00:00
[package]
name = "fish-rust"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"
2023-01-14 22:56:24 +00:00
[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" }
hexponent = { git = "https://github.com/fish-shell/hexponent", branch="fish" }
printf-compat = { git = "https://github.com/fish-shell/printf-compat.git", branch="fish" }
2023-01-14 22:56:24 +00:00
autocxx = "0.23.1"
bitflags = "1.3.2"
2023-01-14 22:56:24 +00:00
cxx = "1.0"
errno = "0.2.8"
inventory = { version = "0.3.3", optional = true}
2023-04-19 16:35:33 +00:00
lazy_static = "1.4.0"
2023-01-14 22:56:24 +00:00
libc = "0.2.137"
2023-03-26 15:24:35 +00:00
lru = "0.10.0"
moveit = "0.5.1"
nix = { version = "0.25.0", default-features = false, features = [] }
2023-01-14 22:56:24 +00:00
num-traits = "0.2.15"
once_cell = "1.17.0"
2023-02-18 21:06:05 +00:00
rand = { version = "0.8.5", features = ["small_rng"] }
2023-01-14 22:56:24 +00:00
unixstring = "0.2.7"
widestring = "1.0.2"
[build-dependencies]
autocxx-build = "0.23.1"
cc = { git = "https://github.com/mqudsi/cc-rs", branch = "fish" }
cxx-build = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
cxx-gen = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
rsconf = { git = "https://github.com/mqudsi/rsconf", branch = "master" }
2023-01-14 22:56:24 +00:00
[lib]
crate-type = ["staticlib"]
2023-01-14 22:56:24 +00:00
[features]
# The fish-ffi-tests feature causes tests to be built which need to use the FFI.
# These tests are run by fish_tests().
default = ["fish-ffi-tests"]
fish-ffi-tests = ["inventory"]
# The following features are auto-detected by the build-script and should not be enabled manually.
asan = []
bsd = []
2023-01-14 22:56:24 +00:00
[patch.crates-io]
cc = { git = "https://github.com/mqudsi/cc-rs", branch = "fish" }
cxx = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
cxx-gen = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
autocxx = { git = "https://github.com/fish-shell/autocxx", branch = "fish" }
autocxx-build = { git = "https://github.com/fish-shell/autocxx", branch = "fish" }
autocxx-bindgen = { git = "https://github.com/fish-shell/autocxx-bindgen", branch = "fish" }
2023-01-14 22:56:24 +00:00
[patch.'https://github.com/fish-shell/cxx']
cc = { git = "https://github.com/mqudsi/cc-rs", branch = "fish" }
[patch.'https://github.com/fish-shell/autocxx']
cc = { git = "https://github.com/mqudsi/cc-rs", branch = "fish" }
2023-01-14 22:56:24 +00:00
#cxx = { path = "../../cxx" }
#cxx-gen = { path="../../cxx/gen/lib" }
#autocxx = { path = "../../autocxx" }
#autocxx-build = { path = "../../autocxx/gen/build" }
#autocxx-bindgen = { path = "../../autocxx-bindgen" }
[profile.release]
overflow-checks = true