2023-03-30 20:47:22 -07:00
|
|
|
[package]
|
|
|
|
|
name = "relish"
|
2023-05-18 06:53:23 +00:00
|
|
|
version = "0.3.0"
|
2023-03-30 20:47:22 -07:00
|
|
|
authors = ["Ava <ava@sunnypup.io>"]
|
2023-04-19 21:03:26 -07:00
|
|
|
edition = "2021"
|
2023-03-30 20:47:22 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-19 21:03:26 -07:00
|
|
|
# used in config (src/run.rs)
|
2023-03-30 20:47:22 -07:00
|
|
|
dirs = "3.0"
|
2023-04-19 21:03:26 -07:00
|
|
|
# these two are used in src/bin/relish.rs to manage a prompt
|
2023-03-30 20:47:22 -07:00
|
|
|
nu-ansi-term = "0.47.0"
|
|
|
|
|
reedline = "0.17.0"
|
2023-05-26 06:41:18 +00:00
|
|
|
# used by main shell to update console dimensions
|
|
|
|
|
termion = "2.0.1"
|
2023-04-19 21:03:26 -07:00
|
|
|
# these two used in posix shell layer (src/stl/posix.rs)
|
2023-05-26 06:41:18 +00:00
|
|
|
nix = { version = "0.26.2", optional = true }
|
|
|
|
|
libc = { version = "0.2.144", optional = true }
|
2023-04-19 21:03:26 -07:00
|
|
|
# this one provides a global constant lookup table for simple
|
|
|
|
|
# string escaping in the lexer
|
2023-05-18 06:53:23 +00:00
|
|
|
phf = { version = "0.11", default-features = false, features = ["macros"] }
|
2023-05-26 06:41:18 +00:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["posix"]
|
|
|
|
|
posix = ["dep:nix", "dep:libc"]
|
2023-10-12 20:50:27 -07:00
|
|
|
implicit-load = ["posix"]
|