a few changes enclosed:

* documented deps
* mild string escaping
* corrected a misbehavior in sym
This commit is contained in:
Ava Apples Affine 2023-04-19 21:03:26 -07:00
parent d7864ee628
commit 5afc2cc4a1
Signed by: affine
GPG key ID: 3A4645B8CF806069
4 changed files with 22 additions and 14 deletions

View file

@ -1,12 +1,18 @@
[package]
name = "relish"
version = "0.1.0"
version = "0.2.0"
authors = ["Ava <ava@sunnypup.io>"]
edition = "2018"
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"
ctrlc = { version = "3.0", features = ["termination"] }
ctrlc = { version = "3.0", features = ["termination"] }
# this one provides a global constant lookup table for simple
# string escaping in the lexer
phf = { version = "0.11", default-features = false, features = ["macros"] }