summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: b5abfb9507ce2bc21f30d23b13f9cb1f874f46f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "dwarvish"
version = "0.0.1"
edition = "2021"
license = "BSD-3-Clause"
description = "A (mostly) POSIX compliant shell and tiny functional programming language"
homepage = "https://dwarvish.org"
documentation = "https://dwarvish.org"
repository = "https://git.dwarvish.org/dwarvish.git/"

[[bin]]
name = "dwvsh"
path = "src/main.rs"

[dependencies]
libc = "0.2.153"
nix = { version = "0.29.0", features = ["signal"] }
signal-hook = "0.3.17"
termios = "0.3.3"
unicode-width = "0.2.0"