Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.26.0 to 0.26.2. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.26.0...v0.26.2) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
599 B
TOML
41 lines
599 B
TOML
[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"]
|
|
|