mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
34a4c7de7f
This should be used in lieu of manually targeting individual operating systems when using features shared by all BSD families. e.g. instead of #[cfg(any(target_os = "freebsd", target_os = "dragonflybsd", ...))] fn foo() { } you would use #[cfg(feature = "bsd")] fn foo() { } This feature is automatically detected at build-time (see build.rs changes) and should *not* be enabled manually. Additionally, this feature may not be used to conditionally require any other dependency, as that isn't supported for auto-enabled features.
63 lines
2 KiB
TOML
63 lines
2 KiB
TOML
[package]
|
|
name = "fish-rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.67"
|
|
|
|
[dependencies]
|
|
widestring-suffix = { path = "./widestring-suffix/" }
|
|
|
|
autocxx = "0.23.1"
|
|
bitflags = "1.3.2"
|
|
cxx = "1.0"
|
|
errno = "0.2.8"
|
|
inventory = { version = "0.3.3", optional = true}
|
|
libc = "0.2.137"
|
|
nix = { version = "0.25.0", default-features = false, features = [] }
|
|
num-traits = "0.2.15"
|
|
once_cell = "1.17.0"
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
|
unixstring = "0.2.7"
|
|
widestring = "1.0.2"
|
|
lru = "0.10.0"
|
|
|
|
[build-dependencies]
|
|
autocxx-build = "0.23.1"
|
|
cxx-build = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
|
|
cxx-gen = { git = "https://github.com/fish-shell/cxx", branch = "fish" }
|
|
miette = { version = "5", features = ["fancy"] }
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[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.
|
|
bsd = []
|
|
|
|
[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" }
|
|
|
|
[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" }
|
|
|
|
#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
|