-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.25 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
[package]
name = "hogflare"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
axum = { version = "0.7", default-features = false, features = ["json", "query"] }
http = "1.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
thiserror = "1.0"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde", "clock"] }
base64 = "0.22"
serde_urlencoded = "0.7"
flate2 = "1.0"
hmac = "0.12"
sha2 = "0.10"
sha1 = "0.10"
hex = "0.4"
subtle = "2.5"
tower-http = { version = "0.5", features = ["trace"] }
url = "2.5"
worker = { version = "0.7", features = ["http"] }
tower-service = "0.3.3"
uuid = { version = "1.7", features = ["v4", "serde", "js"] }
getrandom = { version = "0.2", features = ["js"] }
regex = "1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
axum = { version = "0.7", default-features = false, features = ["json", "query", "tokio", "http1"] }
dotenvy = "0.15"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
tokio = { version = "1.37", features = ["macros", "rt-multi-thread", "process", "net", "time"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
serde_json = "1.0"
http-body-util = "0.1"
tempfile = "3.10"