-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (53 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
57 lines (53 loc) · 1.37 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
[package]
name = "dev-blog-api"
version = "0.1.1"
edition = "2024"
description = "My take on a CMS system, done in Rust. Kind of a playground for figuring things out."
readme = "README.md"
repository = "ttps://github.com/crustyrustacean/dev-blog-api.git"
license = "MIT"
publish = false
[[bin]]
name = "dev-blog-api"
path = "src/bin/main.rs"
[lib]
name = "dev_blog_api_lib"
path = "src/lib/lib.rs"
[dependencies]
anyhow = "1.0.93"
axum = "0.8.4"
axum-macros = "0.5.0"
chrono = { version = "0.4.41", features = ["serde"] }
http = "1.3.1"
libsql = "0.9.0"
once_cell = "1.20.2"
opendal = "0.54.0"
serde = { version = "1.0.214", features = ["derive"] }
shuttle-axum = "0.57.0"
shuttle-opendal = "0.57.0"
shuttle-runtime = { version = "0.57.0", default-features = false }
shuttle-turso = "0.57.0"
tera = "1.20.0"
thiserror = "2.0.16"
tokio = { version = "1", features = ["net"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = [
"cors",
"fs",
"normalize-path",
"request-id",
"trace",
"util",
] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
utoipa = "5.2.0"
uuid = { version = "1.11.0", features = ["v4"] }
[dev-dependencies]
reqwest = { version = "0.12.12", features = ["json"] }
serde_json = "1.0.143"