-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 789 Bytes
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
[package]
name = "rust_shell"
version = "0.1.0"
edition = "2021"
authors = ["Srijan Verma <srijanv0@gmail.com>"]
description = "A custom shell implementation in Rust"
[dependencies]
libc = "0.2"
nix = { version = "0.27", features = ["process", "signal", "fs"] }
rustyline = "10.0"
dirs = "4.0"
glob = "0.3"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
gethostname = "0.4"
lru = "0.12"
tokio = { version = "1.35", features = ["full"] }
futures = "0.3"
rayon = "1.8"
crossbeam = "0.8"
parking_lot = "0.12"
num_cpus = "1.16"
[[bin]]
name = "rshell"
path = "src/main.rs"
[features]
default = ["completion", "hints"]
completion = []
hints = []
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.bench]
inherits = "release"