36 lines
723 B
TOML
36 lines
723 B
TOML
[package]
|
|
name = "shed"
|
|
description = "A linux shell written in rust"
|
|
publish = false
|
|
version = "0.4.0"
|
|
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[dependencies]
|
|
ariadne = "0.6.0"
|
|
bitflags = "2.8.0"
|
|
clap = { version = "4.5.38", features = ["derive"] }
|
|
env_logger = "0.11.9"
|
|
glob = "0.3.2"
|
|
log = "0.4.29"
|
|
nix = { version = "0.29.0", features = ["uio", "term", "user", "hostname", "fs", "default", "signal", "process", "event", "ioctl", "poll"] }
|
|
rand = "0.10.0"
|
|
regex = "1.11.1"
|
|
scopeguard = "1.2.0"
|
|
serde_json = "1.0.149"
|
|
unicode-segmentation = "1.12.0"
|
|
unicode-width = "0.2.0"
|
|
vte = "0.15"
|
|
yansi = "1.0.1"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.42.2"
|
|
pretty_assertions = "1.4.1"
|
|
tempfile = "3.24.0"
|
|
|
|
[[bin]]
|
|
name = "shed"
|