Moved test libraries to dev-dependencies Implemented some more motion types Implemented ToLower, ToUpper, JoinLines, Indent, Undo, and Redo verbs 'O' and 'o' operators now behave correctly Added many more unit tests for the readline module
28 lines
580 B
TOML
28 lines
580 B
TOML
[package]
|
|
name = "fern"
|
|
description = "A linux shell written in rust"
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[dependencies]
|
|
bitflags = "2.8.0"
|
|
clap = { version = "4.5.38", features = ["derive"] }
|
|
glob = "0.3.2"
|
|
nix = { version = "0.29.0", features = ["uio", "term", "user", "hostname", "fs", "default", "signal", "process", "event", "ioctl", "poll"] }
|
|
regex = "1.11.1"
|
|
unicode-segmentation = "1.12.0"
|
|
unicode-width = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.42.2"
|
|
pretty_assertions = "1.4.1"
|
|
|
|
[[bin]]
|
|
name = "fern"
|
|
path = "src/fern.rs"
|