Files
packager/api/Cargo.toml

26 lines
470 B
TOML
Raw Normal View History

2021-09-06 09:24:04 +02:00
[package]
name = "packager-api"
version = "0.1.0"
2021-09-07 20:34:45 +02:00
authors = [
"Hannes Körber <hannes@hkoerber.de>"
]
2021-09-07 20:26:59 +02:00
edition = "2021"
2021-09-07 20:34:45 +02:00
readme = "README.md"
repository = "https://github.com/hkoerber/packager/"
license = "AGPL-3.0-only"
publish = false
2021-09-06 09:24:04 +02:00
2021-09-07 00:02:53 +02:00
[lib]
name = "packager"
2021-09-06 09:24:04 +02:00
[dependencies]
2021-09-06 13:28:56 +02:00
tokio = { version = "1", features = ["full"] }
warp = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-09-07 00:02:53 +02:00
uuid = { version = "0.8", features = ["serde", "v4"] }