-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (47 loc) · 1.08 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
63
[package]
name = "unlimited"
version = "0.0.6"
authors = ["Carl-Erwin Griffith <carl.erwin@gmail.com>"]
license = "MIT"
edition = "2018"
[[bin]]
doc = false
name = "unlimited"
path = "src/main.rs"
[[test]]
doc = false
name = "gen_lines"
path = "test-tools/gen_lines.rs"
[[test]]
doc = false
name = "gen_utf8"
path = "test-tools/gen_utf8.rs"
[[test]]
doc = false
name = "test_screen"
path = "test-tools/test_screen.rs"
[features]
gfx-sdl = ["dep:sdl2", "dep:gl"]
[dependencies]
lazy_static = "1.4.0"
parking_lot = "0.12.1"
libc = "0.2.*"
rand = "0.8.4"
clap = "3.2.22"
#serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
once_cell = "1.18.0"
#crossterm = { git = "https://github.com/crossterm-rs/crossterm" , branch = "0.20" }
crossterm = { git = "https://github.com/carl-erwin/crossterm" , branch = "sigterm-handler" }
sdl2 = { version = "0.35.2", optional = true }
gl = { version = "0.14.0", optional = true }
unicode-width = "0.1.8"
utf8parse = "0.2.0"
regex = "1.5.5"
[profile.release]
debug = true
opt-level = 3
panic = "abort"
lto = "fat"
[profile.dev]
#panic = "abort"