[package] name = "rcshell" version = "0.0.1-alpha.3" authors = ["Ali Polatel "] edition = "2021" description = "plan9 rc in rust" readme = "README.md" license = "GPL-3.0-or-later" homepage = "https://lib.rs/rcshell" keywords = ["shell", "linux"] categories = ["command-line-utilities"] repository = "https://git.sr.ht/~alip/rustrc" [[bin]] name = "rc" path = "src/main.rs" [dependencies] anyhow = { version = "1.0.79", features = [ "backtrace" ] } clap = { version = "4.4", features = ["env", "unicode" ] } is-terminal = "0.4.10" nom = "7.1.3" rustyline = { version = "13.0.0", features = ["termios"] } [build-dependencies] built = {version = "0.7.1", features=["git2", "chrono"]} [profile.release] codegen-units = 1 debug = false lto = true