Add array length syntax ${arr[#]}
Map read path now expands variables before splitting on ., fixing map "$node" with dotted paths
Map assignment path uses quote-aware token splitting, enabling quoted keys like "--type="
Completion errors now display above prompt instead of being overwritten
Fix nested if/fi parser bug when closing keywords appear on separate lines
Add QuoteState enum, replacing ad-hoc quote tracking booleans across lexer, highlighter, and expansion
Add split_tk_at/split_tk for quote-aware token splitting with span preservation
Refactor setup_builtin to accept optional argv for deferred expansion
Add ariadne dependency (not yet wired up)
33 lines
670 B
TOML
33 lines
670 B
TOML
[package]
|
|
name = "shed"
|
|
description = "A linux shell written in rust"
|
|
publish = false
|
|
version = "0.3.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"] }
|
|
regex = "1.11.1"
|
|
serde_json = "1.0.149"
|
|
unicode-segmentation = "1.12.0"
|
|
unicode-width = "0.2.0"
|
|
vte = "0.15"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.42.2"
|
|
pretty_assertions = "1.4.1"
|
|
tempfile = "3.24.0"
|
|
|
|
[[bin]]
|
|
name = "shed"
|