forked from lichess-org/lila-openingexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (48 loc) · 1.48 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
[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+"
authors = ["Niklas Fiekas <[email protected]>"]
categories = ["games"]
keywords = ["chess", "lichess"]
edition = "2021"
[dependencies]
async-channel = "1"
axum = "0.5"
bytes = "1"
clap = { version = "3", features = ["derive", "env"] }
csv = "1"
env_logger = "0.9"
futures-util = "0.3"
log = "0.4"
moka = "0.8"
partial_sort = "0.1"
pin-project-lite = "0.2"
reqwest = { version = "0.11", features = ["stream"] }
rocksdb = { git = "https://github.com/niklasf/rust-rocksdb.git", branch = "lichess", features = ["lz4", "zstd", "jemalloc"], default-features = false }
rustc-hash = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = { version = "1", features = ["time_0_3"] }
sha-1 = "0.10"
shakmaty = { version = "0.21", features = ["variant"] }
sync_wrapper = "0.1"
thiserror = "1"
tikv-jemallocator = "0.4" # 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 = { version = "0.4", features = ["util"] }
tower-http = { version = "0.3", features = ["set-header"] }
[dev-dependencies]
quickcheck = "1"
iai = "0.1"
[[bench]]
name = "benches"
harness = false