-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (54 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (54 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "bash"
version = "0.4.0"
edition = "2024"
autobins = false
description = "Rust-implemented shell focused on bash compatibility"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "bash"
path = "src/main.rs"
[[bin]]
name = "besh"
path = "src/bin/besh.rs"
[dependencies]
anyhow = "1"
bon = "3"
compio = { version = "0", default-features = false, features = ["macros", "runtime"] }
fancy-regex = { version = "0", default-features = false, features = ["perf", "std", "unicode"] }
futures = { version = "0", default-features = false, features = ["async-await", "std"] }
itertools = "0"
log = "0"
nanoargs = { version = "0", features = ["color"] }
nanocolor = "0"
nanologger = { version = "0", features = ["log"] }
nanotime = "0"
peg = "0"
strum = "0"
strum_macros = "0"
thiserror = "2"
utf8-chars = "3"
windows-sys = { version = "0", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
] }
[dev-dependencies]
insta = { version = "1", features = ["redactions", "ron"] }
pretty_assertions = { version = "1", features = ["unstable"] }
serde = { version = "1", features = ["derive"] }
tempfile = "3"
[features]
default = []
debug-parser = ["peg/trace"]
[profile.release]
codegen-units = 1
debug = false
lto = true
opt-level = "s"
panic = "abort"
strip = true