-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (55 loc) · 1.29 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "zino-cli"
description = "CLI tools for zino."
version = "0.7.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-cli"
repository = "https://github.com/zino-rs/zino-cli"
documentation = "https://docs.rs/zino-cli"
readme = "README.md"
include = ["public/**/*", "src/**/*", "Cargo.toml"]
[workspace]
[[bin]]
name = "zli"
path = "src/main.rs"
[dependencies]
git2 = "0.20.0"
humantime = "2.1.0"
humantime-serde = "1.1.1"
include_dir = "0.7.4"
log = "0.4.25"
taplo = "0.13.2"
toml = "0.8.20"
toml_edit = "0.22.24"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
regex = "1.11.1"
walkdir = "2.5.0"
[dependencies.axum]
version = "0.8.1"
default-features = false
[dependencies.clap]
version = "4.5.30"
features = ["color", "derive"]
[dependencies.rustls-acme]
version = "0.13.0"
default-features = false
features = ["tokio", "ring"]
[dependencies.serde]
version = "1.0.218"
features = ["derive"]
[dependencies.tokio]
version = "1.43.0"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1.17"
features = ["net"]
[dependencies.zino]
version = "0.32.1"
features = ["axum"]
[dependencies.zino-core]
version = "0.32.1"