-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
40 lines (38 loc) · 1.38 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
[package]
name = "homegate"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
argon2 = "0.5"
async-trait = "0.1.89"
axum = { version = "0.8.1", features = ["macros", "ws"] }
axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"] }
base64 = "0.22"
blake3 = "1.5"
chrono = "0.4"
dotenvy = "0.15.7"
envy = "0.4.2"
futures-util = "0.3.31"
getrandom = "0.3.4"
hex = "0.4"
regex = "1.11"
# default-features = false to avoid OpenSSL dependency; using rustls instead
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "http2", "charset"] }
reqwest-websocket = { version = "0.5.1", default-features = false }
sea-query = { version = "0.32.6", features = [ "with-chrono", "postgres-array", "with-uuid" ]}
sea-query-binder = { version = "0.7.0", features = [ "with-chrono", "runtime-tokio", "sqlx-postgres", "postgres-array", "with-uuid" ] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "postgres", "chrono", "tls-rustls", "uuid" ] }
thiserror = "2.0.12"
tokio = { version = "1.48.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors", "trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
url = "2.5.7"
uuid = { version = "1.18.1", features = ["v4", "serde"] }
[dev-dependencies]
axum-test = "18"
tempfile = "3"
wiremock = "0.6"