-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 827 Bytes
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
[package]
name = "live_sports"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.21"
itertools = "0.10.3"
lazy_static = "1.4.0"
ordinal = "0.3.2"
phf = { version ="0.10.1", features = ["macros"] }
regex = "1.5.6"
reqwest = {version = "0.11.10", features = ["rustls"]}
serde_json = "1.0.81"
tokio = { version = "1.18.2", features = ["full"] }
thiserror = "1.0.32"
axum = "0.6.4"
tracing = "0.1.33"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
parking_lot = "0.12.1"
serde = { version = "1.0.144", features = ["derive"] }
bytes = "0.4"
prost = "0.11.9"
once_cell = "1.18.0"
maplit = "1.0.2"
[build-dependencies]
prost-build = "0.11.9"