forked from drewwalton19216801/rush-sh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 757 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 757 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
[workspace]
members = [".", "benchmarks"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
chrono = { version = "0.4.43", features = ["serde"] }
[package]
name = "rush-sh"
version = "0.8.0"
edition = "2024"
description = "A POSIX sh-compatible shell written in Rust"
license = "MIT"
documentation = "https://drewwalton19216801.github.io/rush-sh/"
repository = "https://github.com/drewwalton19216801/rush-sh"
[lib]
name = "rush_sh"
path = "src/lib.rs"
[dependencies]
rustyline = { version = "17.0.2", features = ["signal-hook"] }
signal-hook = "0.4.1"
glob = "0.3.3"
clap = { version = "4.5.54", features = ["derive"] }
lazy_static = "1.5.0"
libc = "0.2.180"
[dev-dependencies]
rush-sh = { path = "." }