Add another attempt with python

This commit is contained in:
2022-07-02 22:03:35 +02:00
parent 4ef8cc57b1
commit 8ac2237892
38 changed files with 261 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
[package]
name = "packager-api"
version = "0.1.0"
authors = [
"Hannes Körber <hannes@hkoerber.de>"
]
edition = "2021"
readme = "README.md"
repository = "https://github.com/hkoerber/packager/"
license = "AGPL-3.0-only"
publish = false
[profile.release]
lto = true
[lib]
name = "packager"
[dependencies]
warp = "0.3"
serde_json = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.serde]
version = "1.0"
features = ["derive", "rc"]
[dependencies.uuid]
version = "0.8"
features = ["serde", "v4"]
[dependencies.rusqlite]
version = "0.26.2"
features = ["uuid"]