-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (46 loc) · 1.29 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
[package]
name = "todo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
tokio = { version = "1", features = ["full"] }
# -- Json
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
# -- Web
axum = "0.7.0"
axum-extra = "0.7.7"
tower-http = { version = "0.5.2", default-features = false, features = [
"cors",
"fs",
] }
tower-cookies = "0.9"
# -- Data
sqlx = { version = "0.7.1", features = [ "runtime-tokio-rustls", "postgres", "uuid", "time", "chrono","rust_decimal" ] }
# -- Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# -- Others
uuid = {version = "1", features = ["v4","fast-rng",]}
lazy-regex = "3"
async-trait = "0.1"
strum_macros = "0.25"
eyre = "0.6.9"
chrono ={ version = "0.4.31", features = [ "serde" ] }
thiserror = "1.0.50"
dotenv = "0.15.0"
rspc = { version = "0.2.0" }
maud = { version = "0.25.0", features = ["axum"] }
askama = { version = "0.11.0"}
jsonwebtoken = "8.3.0"
shuttle-runtime = "0.43.0"
shuttle-axum = "0.43.0"
rspc-axum = { version = "0.1.1", features = ["ws"] }
specta = { version = "1", features = ["chrono"] }
[dev-dependencies]
anyhow = "1"
httpc-test = "0.1.1"
serial_test = "2"