-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
34 lines (32 loc) · 1.04 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
[package]
name = "lila-http"
publish = false
description = "handle some of the load of lichess.org/tournament"
homepage = "https://lichess.org/tournament"
repository = "https://github.com/lichess-org/lila-http"
readme = "README.md"
license = "AGPL-3.0+"
categories = ["games"]
keywords = ["chess", "lichess"]
edition = "2021"
[dependencies]
arrayvec = { version = "0.7", features = ["serde"] }
axum = "0.8"
axum-extra = { version = "0.10", features = ["erased-json"] }
clap = { version = "4", features = ["derive", "deprecated"] }
env_logger = "0.11"
futures = "0.3"
itertools = "0.14"
listenfd = "1"
log = "0.4"
moka = { version = "0.12", features = ["future"] }
redis = { version = "0.27", features = ["aio", "tokio-comp"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
thiserror = "2"
tikv-jemallocator = { version = "0.6", features = ["unprefixed_malloc_on_supported_platforms"] }
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["set-header"] }
[profile.release]
lto = true