mirror of https://github.com/zino-rs/zino
68 lines
1.3 KiB
TOML
68 lines
1.3 KiB
TOML
[package]
|
|
name = "zino-cli"
|
|
description = "CLI tools for zino."
|
|
version = "0.4.0"
|
|
rust-version = "1.80"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
categories = ["command-line-utilities", "network-programming", "web-programming"]
|
|
keywords = ["cli", "gui", "zino", "dioxus"]
|
|
homepage = "https://github.com/zino-rs/zino"
|
|
repository = "https://github.com/zino-rs/zino"
|
|
documentation = "https://docs.rs/zino-cli"
|
|
readme = "README.md"
|
|
include = ["public/**/*", "src/**/*", "Cargo.toml"]
|
|
|
|
[[bin]]
|
|
name = "zli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
git2 = "0.19.0"
|
|
humantime = "2.1.0"
|
|
humantime-serde = "1.1.1"
|
|
include_dir = "0.7.4"
|
|
log = "0.4.22"
|
|
taplo = "0.13.0"
|
|
toml = "0.8.19"
|
|
toml_edit = "0.22.22"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
regex = "1.11.1"
|
|
walkdir = "2.5.0"
|
|
|
|
[dependencies.axum]
|
|
version = "0.7.7"
|
|
default-features = false
|
|
|
|
[dependencies.clap]
|
|
version = "4.5.20"
|
|
features = ["color", "derive"]
|
|
|
|
[dependencies.rustls-acme]
|
|
version = "0.11.1"
|
|
default-features = false
|
|
features = ["tokio","ring"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.214"
|
|
features = ["derive"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.41.0"
|
|
features = ["full"]
|
|
|
|
[dependencies.tokio-stream]
|
|
version = "0.1.16"
|
|
features = ["net"]
|
|
|
|
[dependencies.zino]
|
|
path = "../zino"
|
|
version = "0.25.3"
|
|
features = ["axum"]
|
|
|
|
[dependencies.zino-core]
|
|
path = "../zino-core"
|
|
version = "0.26.3"
|
|
|
|
[workspace] |