-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 839 Bytes
/
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
[package]
name = "corolla"
version = "0.3.2"
edition = "2021"
description = "\"your liteweight backend\""
license = "BSD-3-Clause"
repository = "https://github.com/janie314/corolla"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.5", features = ["macros"] }
clap = { version = "4.5.9", features = ["derive"] }
log = "0.4.22"
pretty_env_logger = "0.5.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
sqlx = { version = "0.8.0", features = ["sqlite", "runtime-tokio", "macros"]}
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread", "process"] }
tower-http = { version = "0.6.0", features = ["fs"] }
[dev-dependencies]
pretty_assertions = "1.4.0"
reqwest = { version = "0.12.5", features = ["json"] }