about summary refs log tree commit diff
path: root/kittybox-rs/util/Cargo.toml
blob: b0b725c08a9c61cf1f1e25632531f87b530e41e7 (plain) (blame)
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
[package]
name = "kittybox-util"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
fs = ["rand", "tokio", "tokio/fs"]

[dependencies]
serde = { version = "^1.0.125", features = ["derive"] }
serde_json = "^1.0.64"
axum-core = "^0.2.6"
http = "^0.2.7"
[dependencies.rand]
version = "^0.8.5"
optional = true
[dependencies.tokio]
version = "^1.16.1"
features = ["tracing"]
optional = true
[dependencies.sqlx]
version = "0.6"
features = ["json"]
optional = true