-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "hush"
description = "Hush is a unix shell scripting language based on the Lua programming language"
version = "0.1.4"
authors = ["gahag <gabriel.s.b@live.com>"]
edition = "2018"
homepage = "https://github.com/gahag/hush"
repository = "https://github.com/gahag/hush"
license = "MIT"
[dependencies]
automod = "1.0"
clap = "2.33"
termion = "1.5"
intaglio = "1.2"
gc = { version = "0.4", features = ["derive"] }
regex = { version = "1.5", default-features = false, features = [ "std", "unicode-perl" ] }
os_pipe = "1.0"
inventory = "0.1"
bstr = "0.2"
glob = "0.3"
serial_test = "0.5"
serde = "1.0"
serde_json = "1.0"
base64 = "0.13"
hex = "0.4"
rand = "0.8.5"
rand_chacha = "0.3.1"
[dev-dependencies]
assert_matches = "1.5"
[profile.release]
lto = true