-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (28 loc) · 932 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
[package]
name = "docker-volume"
version = "0.1.1"
edition = "2021"
authors = ["Joseph Godlewski <[email protected]>"]
description = "A Rust helper for docker volumes"
homepage = "https://github.com/xetdata/docker-volume-rs"
repository = "https://github.com/xetdata/docker-volume-rs"
readme = "README.md"
keywords = ["docker"]
license = "BSD-3-Clause"
categories = ["filesystem", "virtualization"]
publish = true
include = ["src/**/*", "src/*", "Cargo.toml", "LICENSE", "README.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
async-trait = "0.1.68"
axum = "0.6.18"
hyper = "0.14.26"
hyperlocal = "0.8.0"
serde = "1.0.163"
serde_json = "1.0.96"
serde_derive = "1.0.163"
tokio = { version = "1.28.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = {version = "0.3.17", features = ["env-filter", "json"] }
thiserror = "1.0.40"