-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
47 lines (41 loc) · 1.22 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
[package]
name = "rating-update"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
#glicko2 = "0.3.1"
rocket = { version = "0.5.0-rc.3", features = ["json"] }
rocket_sync_db_pools = { version = "0.1.0-rc.3", default-features = false, features = ["sqlite_pool"] }
rocket_dyn_templates = { version = "0.1.0-rc.3", default-features = false, features = ["handlebars"] }
#ggst-api = { git = "https://github.com/halvnykterist/ggst-api-rs" }
#ggst-api = { path = "../ggst-api-rs" }
tokio = { version = "1", features=["full"] }
rusqlite = { version = "0.27", features = ["bundled", "functions"] }
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
lazy_static = "1"
glob = "0.3"
chrono = "0.4"
simplelog = "0.9"
log = "0.4"
fxhash = "0.2"
num-format = "0.4"
all_asserts = "2.3.1"
aes-gcm = "0.10"
hex = "0.4"
rmp-serde = "1"
base64-url = "1.4"
reqwest = "0.11"
getrandom = "*"
steamworks = { git = "https://github.com/Noxime/steamworks-rs.git"}
rand = "0.8.5"
[dev-dependencies]
criterion = { version = "0.3", features = ["async_tokio"] }
futures = "0.3"
[[bench]]
name = "bench"
harness = false
[profile.bench]
debug = 1