-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
31 lines (28 loc) · 814 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
25
26
27
28
29
30
31
[package]
name = "axum-embed"
version = "0.2.0"
edition = "2021"
authors = ["Yasunobu Okamura"]
description = "Serve embedded files with axum"
readme = "README.md"
repository = "https://github.com/informationsea/axum-embed"
homepage = "https://github.com/informationsea/axum-embed"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mime_guess = "2"
rust-embed = "8"
http = "1"
tower-service = "0.3"
chrono = "0.4.31"
http-body = "1.0.0"
bytes = "1.5.0"
http-body-util = "0.1.0"
[dev-dependencies]
axum = "0.7.2"
tokio = { version = "1.35.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.0", features = ["full"] }
anyhow = "1.0.75"
clap = { version = "4.4.11", features = ["derive"] }
http-body-util = "0.1.0"