-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
36 lines (34 loc) · 1.23 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
[package]
name = "lila-tablebase"
version = "1.0.0"
publish = false
description = "A Syzygy tablebase server"
homepage = "https://tablebase.lichess.ovh"
repository = "https://github.com/lichess-org/lila-tablebase"
readme = "README.md"
license = "AGPL-3.0+"
authors = ["Niklas Fiekas <[email protected]>"]
categories = ["games"]
keywords = ["chess", "syzygy", "tablebase"]
edition = "2021"
[dependencies]
axum = "0.8.0-rc.1"
axum-content-negotiation = { git = "https://github.com/niklasf/axum-content-negotiation", branch = "axum-0.8.0-rc.1" }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
clap = { version = "4", features = ["derive"] }
shakmaty = "0.27"
shakmaty-syzygy = { version = "0.25", features = ["variant", "mmap"] }
gaviota-sys = "0.1"
arrayvec = { version = "0.7", features = ["serde"] }
serde_with = "3"
moka = { version = "0.12", features = ["future"] }
listenfd = "1"
tower-http = { version = "0.6", features = ["trace"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing = "0.1"
antichess-tb-sys = "0.1"
tikv-jemallocator = { version = "0.6", features = ["unprefixed_malloc_on_supported_platforms"] }
tower = "0.5.2"
[profile.release]
lto = true