-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (63 loc) · 1.87 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (63 loc) · 1.87 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
members = [".", "migration", "shared_constants"]
[package]
name = "caliborn"
description = "API server for lumiRadio"
version = "0.1.0"
authors = ["cozygalvinism"]
edition = "2024"
[dependencies]
axum = { version = "0.8.3", features = ["macros", "ws"] }
chrono = "0.4.40"
figment = { version = "0.10.19", features = ["env"] }
hmac = "0.12.1"
jwt = "0.16.0"
oauth2 = "5.0.0"
reqwest = { version = "0.12.15", default-features = false, features = ["json", "rustls-tls", "charset", "http2", "macos-system-configuration"] }
serde = { version = "1.0.219", features = ["derive"] }
sha2 = "0.10.8"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["full"] }
url = "2.5.4"
serenity = "0.12.4"
utoipa = { version = "5.3.1", features = ["axum_extras", "chrono"] }
axum-macros = "0.5.0"
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
sea-orm = { version = "1.1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
"with-chrono",
"with-rust_decimal",
] }
migration = { path = "./migration" }
sea-query = "0.32"
async-trait = "0.1.88"
rand = "0.9.1"
prefixed-api-key = { version = "0.3.0", features = ["all"] }
tracing = "0.1.41"
hex = "0.4.3"
subtle = "2.6.1"
anyhow = { version = "1.0.98", features = ["backtrace"] }
tracing-unwrap = "1.0.1"
serde_json = "1.0.140"
serde_yaml = "0.9.34-deprecated"
tower = "0.5.2"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
rust-stemmers = "1.2.0"
stopwords = "0.1.1"
shared_constants = { path = "./shared_constants" }
paste = "1.0.15"
clap = { version = "4.5", features = ["derive"] }
aes-gcm = "0.10.3"
walkdir = "2.5"
notify = "6.1"
lofty = "0.24"
m3u = "1.0"
futures-util = "0.3"
[dev-dependencies]
mockall = "0.13.1"
rstest = "0.25.0"
sea-orm = { version = "1.1", features = ["mock"] }
testcontainers = "0.24.0"
testcontainers-modules = { version = "0.12.1", features = ["postgres"] }