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

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

[dependencies]
axum = "0.7.4"
camino = "1.1.6"
snafu = "0.8.0"
bempline = { git = "https://github.com/gennyble/bempline" }
tokio = { version = "1.36.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["io"] }
confindent = { git = "https://github.com/gennyble/confindent", branch = "v3.0-writing", features = [
	"macros",
] }
cutie = { path = "../cutie" }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
time = { version = "0.3.36", features = [
	"macros",
	"parsing",
	"formatting",
	"local-offset",
] }
sha2 = "0.10.8"
url = "2.5.0"

# for generating Atom URNs
[dependencies.rand]
version = "0.8.5"
features = ["std", "std_rng"]