2023-08-13 13:17:28 +00:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
members = [
|
2024-05-12 22:27:10 +00:00
|
|
|
"printf"
|
2023-08-13 13:17:28 +00:00
|
|
|
]
|
2023-08-14 23:30:32 +00:00
|
|
|
|
2023-08-14 23:31:46 +00:00
|
|
|
[workspace.package]
|
2024-04-28 13:43:42 +00:00
|
|
|
rust-version = "1.70"
|
2023-08-14 23:31:46 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-08-13 13:17:28 +00:00
|
|
|
[profile.release]
|
|
|
|
overflow-checks = true
|
2024-01-21 12:14:43 +00:00
|
|
|
lto = true
|
2023-08-18 04:53:20 +00:00
|
|
|
|
|
|
|
[package]
|
2024-01-12 12:08:41 +00:00
|
|
|
name = "fish"
|
2023-08-18 04:53:20 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2024-01-24 03:49:35 +00:00
|
|
|
default-run = "fish"
|
2023-08-18 04:53:20 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
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" }
|
|
|
|
|
2024-06-05 15:53:35 +00:00
|
|
|
bitflags = "2.5.0"
|
|
|
|
errno = "0.3.9"
|
2023-08-18 04:53:20 +00:00
|
|
|
lazy_static = "1.4.0"
|
2024-06-05 15:02:57 +00:00
|
|
|
libc = "0.2.155"
|
2024-04-01 14:29:23 +00:00
|
|
|
# lru pulls in hashbrown by default, which uses a faster (though less DoS resistant) hashing algo.
|
|
|
|
# disabling default features uses the stdlib instead, but it doubles the time to rewrite the history
|
|
|
|
# files as of 22 April 2024.
|
2024-06-05 15:53:35 +00:00
|
|
|
lru = "0.12.3"
|
2024-06-05 15:02:57 +00:00
|
|
|
nix = { version = "0.29.0", default-features = false, features = ["inotify", "resource", "fs"] }
|
2024-06-05 15:53:35 +00:00
|
|
|
num-traits = "0.2.19"
|
|
|
|
once_cell = "1.19.0"
|
2024-05-12 22:40:00 +00:00
|
|
|
printf = { path = "./printf" }
|
2023-08-18 04:53:20 +00:00
|
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
2024-06-05 15:53:35 +00:00
|
|
|
widestring = "1.1.0"
|
2024-05-08 13:46:41 +00:00
|
|
|
terminfo = "0.9.0"
|
2023-08-18 04:53:20 +00:00
|
|
|
|
2024-01-03 19:57:28 +00:00
|
|
|
[dev-dependencies]
|
2024-01-07 15:08:29 +00:00
|
|
|
rand_pcg = "0.3.1"
|
2024-03-30 16:47:33 +00:00
|
|
|
serial_test = { version = "1.0.0", default-features = false }
|
2024-01-03 19:57:28 +00:00
|
|
|
|
2023-08-18 04:53:20 +00:00
|
|
|
[build-dependencies]
|
2024-04-17 02:33:59 +00:00
|
|
|
cc = "1.0.94"
|
2024-05-13 21:36:27 +00:00
|
|
|
rsconf = "0.2.2"
|
2023-08-18 04:53:20 +00:00
|
|
|
|
|
|
|
[lib]
|
2024-01-12 12:08:41 +00:00
|
|
|
crate-type = ["rlib"]
|
2024-01-13 02:45:58 +00:00
|
|
|
path = "src/lib.rs"
|
2023-08-18 04:53:20 +00:00
|
|
|
|
2024-01-12 12:08:41 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fish"
|
2024-01-13 02:45:58 +00:00
|
|
|
path = "src/bin/fish.rs"
|
2024-01-12 12:08:41 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fish_indent"
|
2024-01-13 02:45:58 +00:00
|
|
|
path = "src/bin/fish_indent.rs"
|
2024-01-12 12:08:41 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fish_key_reader"
|
2024-01-13 02:45:58 +00:00
|
|
|
path = "src/bin/fish_key_reader.rs"
|
2024-01-12 12:08:41 +00:00
|
|
|
|
2023-08-18 04:53:20 +00:00
|
|
|
[features]
|
2024-01-03 19:57:28 +00:00
|
|
|
default = []
|
2023-12-10 07:48:18 +00:00
|
|
|
benchmark = []
|
2023-08-18 04:53:20 +00:00
|
|
|
|
|
|
|
# The following features are auto-detected by the build-script and should not be enabled manually.
|
|
|
|
asan = []
|
2024-05-08 19:03:53 +00:00
|
|
|
tsan = []
|
2024-01-12 13:00:00 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
rust.non_camel_case_types = "allow"
|
|
|
|
rust.non_upper_case_globals = "allow"
|
2024-03-09 10:44:27 +00:00
|
|
|
rust.unknown_lints = "allow"
|
2024-01-12 13:00:00 +00:00
|
|
|
rust.unstable_name_collisions = "allow"
|
2024-03-09 10:36:11 +00:00
|
|
|
clippy.manual_range_contains = "allow"
|
2024-01-12 13:00:00 +00:00
|
|
|
clippy.needless_return = "allow"
|