generated from Austionian/axum_tailwind_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 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
[package]
name = "gathering_surf"
version = "0.1.0"
edition = "2021"
default-run = "gathering_surf"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
axum = { version = "0.8", features = ["ws"] }
bb8 = "0.8.6"
bb8-redis = "0.17.0"
chrono = "0.4"
chrono-tz = "0.10"
config = { version = "0.15", default-features = false, features = ["yaml"] }
hyper = { version = "1", features = ["full"] }
maud = { git = "https://github.com/austionian/maud.git", rev = "b4bdfe31e9c3de97dd33144258b096beb98c06e3", features = [
"axum",
] }
notify = "6.1.1"
redis = { version = "0.27", features = ["tokio-comp"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde-aux = "4"
serde_json = "1"
serde_yaml = "0.9"
tera = "1"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.15"
tower = "0.5"
tower-http = { version = "0.6", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dependencies.openssl-sys]
version = "0.9"
features = ["vendored"]
[dev-dependencies]
insta = { version = "1", features = ["yaml"] }
wiremock = "0.6.0"
[profile.dev.package]
insta.opt-level = 3
[features]
mock-time = []