-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (42 loc) · 1.26 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
52
53
54
[package]
name = "robo_radio"
authors = ["Andrea Pavoni <[email protected]>"]
version = "0.1.0"
edition = "2021"
rust-version = "1.63"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
panic = "abort"
[dependencies]
# Async stuff
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1.57"
# Web & HTTP stuff
axum ={version = "0.6.0-rc.2", features = ["ws", "headers", "json"]}
axum-extra = {version = "0.4.0-rc.1", features = ["spa"]}
tower-http = { version = "0.3.0", features = ["trace", "set-header"] }
# Result and Error handling
anyhow = "1.0"
thiserror = "1.0"
# JSON handling
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# HTTP client
reqwest = { version = "0.11", features = ["json"] }
reqwest-middleware = "0.1.1"
reqwest-retry = "0.1"
# Random number generator (used to shuffle vecs)
rand = "0.8.5"
# Date and time
chrono = {version = "0.4", features = ["serde"]}
# Uuid
uuid = { version = "1.1", features = ["serde", "v4"]}
# Regular expressions (+ static evaluation)
regex = "1"
lazy_static = "1.4.0"
# Logging & tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }