-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
62 lines (54 loc) · 1.3 KB
/
Cargo.toml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "dune"
version = "0.2.0-alpha"
authors = ["Adam McDaniel <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "A shell🐚 by the beach🏖️!!"
readme = "README.md"
documentation = "https://docs.rs/dune"
homepage = "https://github.com/adam-mcdaniel/dune"
repository = "https://github.com/adam-mcdaniel/dune"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "dunesh"
path = "src/bin.rs"
[dependencies]
clap = { version = "3.0", features = [ "cargo" ] }
json = "0.12.4"
terminal_size = "0.1.17"
textwrap = "0.14"
nom = "7.0"
detached-str = "0.1"
rand = "0.8"
ctrlc = "3.2"
common_macros = "0.1"
snailquote = "0.3"
rustyline = "9.1"
rustyline-derive = "0.6"
dirs = "4.0"
dunce = "1.0"
chess-engine = { version = "0.1.2", optional = true }
glob = "0.3"
rpassword = "7.3"
crossterm = "0.27"
lazy_static = "1.4"
[dependencies.toml]
version = "0.5.8"
default-features = false
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["clock", "std"]
[dependencies.os_info]
version = "3.0"
default-features = false
[dependencies.prettytable-rs]
version = "0.10"
default-features = false
features = ["win_crlf"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "parser_benchmark"
harness = false