-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
59 lines (49 loc) · 1.12 KB
/
Cargo.toml
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
[package]
edition = "2021"
build = "src/build.rs"
name = "cicada"
version = "1.0.3"
authors = ["Hugo Wang <[email protected]>"]
description = "A simple Bash-like Unix shell."
repository = "https://github.com/mitnk/cicada"
keywords = ["shell", "unix"]
categories = ["command-line-utilities", "command-line-interface", "development-tools"]
license = "MIT"
[profile.release]
lto = true
strip = true
[lib]
name = "cicada"
path = "src/lib.rs"
[[bin]]
name = "cicada"
doc = false
[dependencies]
errno = "0.3.0"
exec = "0.3.0"
glob = "0.3.0"
lazy_static = "1.5.0"
libc = "0.2.0"
linefeed = "0.6.0"
pest = "2.7"
pest_derive = "2.7"
regex = "1"
yaml-rust = "0.4.0"
uuid = { version = "1.4", features = ["serde", "v4"] }
structopt = { version = "0.3", default-features = false }
[dependencies.nix]
version = "0.29.0"
features = ["fs", "process", "signal"]
[dependencies.clap]
version = "4.5"
default-features = false
features = ["std", "derive", "help"]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.time]
version = "0.3"
features = ["local-offset"]
[build-dependencies.time]
version = "0.3"
features = ["local-offset"]