flesh/Cargo.toml
Ava Hahn 6969ea63bc usability improvements to env and def
* env prints variables and functions in seperate columns
* run/stl seperation of concerns significantly better
* def doesnt store lists or lambdas in the environment
2023-05-21 23:53:00 +00:00

20 lines
586 B
TOML

[package]
name = "relish"
version = "0.3.0"
authors = ["Ava <ava@sunnypup.io>"]
edition = "2021"
[dependencies]
# used in config (src/run.rs)
dirs = "3.0"
# these two are used in src/bin/relish.rs to manage a prompt
nu-ansi-term = "0.47.0"
reedline = "0.17.0"
# these two used in posix shell layer (src/stl/posix.rs)
nix = "0.26.2"
# this one provides a global constant lookup table for simple
# string escaping in the lexer
phf = { version = "0.11", default-features = false, features = ["macros"] }
libc = "0.2.144"
# used by main shell to update consol dimensions
termion = "2.0.1"