forked from alemi/upub
24 lines
680 B
TOML
24 lines
680 B
TOML
[package]
|
|
name = "upub-cli"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = [ "alemi <me@alemi.dev>" ]
|
|
description = "cli maintenance tasks for upub"
|
|
license = "AGPL-3.0"
|
|
repository = "https://git.alemi.dev/upub.git"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
apb = { path = "../../apb/" }
|
|
upub = { path = "../core" }
|
|
tracing = "0.1"
|
|
serde_json = "1"
|
|
sha256 = "1.5"
|
|
uuid = { version = "1.8", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
openssl = "0.10" # TODO handle pubkeys with a smaller crate
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
sea-orm = { version = "0.12", features = ["macros", "sqlx-sqlite", "runtime-tokio-rustls"] }
|
|
futures = "0.3"
|