-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
61 lines (55 loc) · 1.75 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
[package]
name = "lila-openingexplorer"
version = "3.0.0"
publish = false
description = "An opening explorer for lichess.org"
homepage = "https://explorer.lichess.ovh"
repository = "https://github.com/lichess-org/lila-openingexplorer"
readme = "README.md"
license = "AGPL-3.0-or-later"
authors = ["Niklas Fiekas <[email protected]>"]
categories = ["games"]
keywords = ["chess", "lichess"]
edition = "2021"
build = "build.rs"
[dependencies]
axum = { version = "0.7", features = ["macros", "multipart"] }
bytes = "1"
clap = { version = "4", features = ["derive", "env", "deprecated"] }
csv = "1"
env_logger = "0.11"
fastrand = "2"
futures-util = "0.3"
log = "0.4"
moka = { version = "0.12", features = ["future"] }
nohash-hasher = "0.2"
partial_sort = "0.2"
pin-project-lite = "0.2"
reqwest = { version = "0.12", features = ["stream"] }
rocksdb = { version = "0.22", features = ["io-uring", "lz4", "zstd", "jemalloc"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = { version = "3", features = ["time_0_3"] }
sha-1 = "0.10"
shakmaty = { version = "0.27", features = ["variant", "nohash-hasher"] }
sync_wrapper = "1"
thin-vec = "0.2"
thiserror = "1"
tikv-jemallocator = "0.5" # matching rocksdb
time = "0.3"
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["io"] }
tower-http = { version = "0.5", features = ["set-header"] }
[dev-dependencies]
quickcheck = "1"
iai = "0.1"
[profile.release]
lto = true
[[bench]]
name = "benches"
harness = false
[build-dependencies]
vergen = { version = "8.2.4", features = ["git", "gitcl"] }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tokio_unstable)"] }