-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (39 loc) · 1.2 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
[package]
authors = ["Pavel Aslanov <[email protected]>"]
description = "Posix terminal rendering library"
edition = "2021"
homepage = "https://github.com/aslpavel/surf-n-term"
include = ["**/*.rs", "**/Cargo.toml", "**/README.md"]
license = "MIT"
name = "surf_n_term"
readme = "README.md"
repository = "https://github.com/aslpavel/surf-n-term.git"
version = "0.17.8"
[dependencies]
fnv = "^1.0"
lru = { version = "^0.12", default-features = false }
png = "^0.17"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
signal-hook = "^0.3"
smallvec = "^1.11"
tracing = "^0.1"
unicode-width = "^0.2"
either = "^1.13"
rasterize = "^0.4.2"
# rasterize = { path = "../rasterize", default-features = false, features = ["serde"]}
[dependencies.rustix]
# switch to published version once select is there
git = "https://github.com/bytecodealliance/rustix.git"
rev = "0565616570e20b34b711e87c1c7b6612d3aae093"
features = ["event", "fs", "termios"]
[dev-dependencies]
criterion = { version = "^0.5", features = ["html_reports"] }
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
tracing-appender = "^0.2"
[[bench]]
harness = false
name = "decoder"
[[bench]]
harness = false
name = "quantize"