-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (23 loc) · 889 Bytes
/
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
[package]
name = "bwmap"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["full", "uchardet-bindings", "compact_enc_det-bindings"]
full = []
[dependencies]
uchardet-bindings = { git = "https://github.com/zzlk/uchardet-bindings", optional = true }
compact_enc_det-bindings = { git = "https://github.com/zzlk/compact_enc_det-bindings", optional = true }
serde = { version = "*", features = ["derive"] }
encoding_rs = "*"
anyhow = { version = "*", features = ["backtrace"] }
scopeguard = "*"
phf = { version = "0.10", features = ["macros"] }
tracing = "*"
[dev-dependencies]
reqwest = { version = "*", default-features = false, features = ["json", "http2", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
futures = { version = "*" }
sha2 = "*"
async-stream = "*"