-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
50 lines (47 loc) · 1.18 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
[package]
name = "collie-app-cli"
version = "0.1.2"
edition = "2021"
authors = ["Honsun Zhu <[email protected]>"]
readme = "README.md"
keywords = ["docker-compose", "compose", "docker", "template", "handlebars"]
categories = ["container", "cli"]
repository = "https://github.com/chaitin/collie-app-cli"
license-file = "LICENSE.md"
description = """
A CLI tool to help you quickly develop and use the collie apps.
"""
[dependencies]
anyhow = "1"
async-recursion = "1.0"
async-trait = "0.1"
cfg-if = "1"
clap = { version = "4.0", features = ["derive"] }
const_format = "0.2"
futures = "0.3"
handlebars = "4.3"
lazy_static = "1.4"
log = { version = "0.4" }
log4rs = "1"
passwords = "3.1"
regex = "1"
reqwest = { version = "0.11", features = ["stream"] }
rust-embed = { version = "6.6", features = ["compression"] }
scopeguard = "1.1"
semver = "1"
serde = "1"
serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
which = "4"
xid = "1"
[build-dependencies]
vergen = { version = "8.1", default-features = false, features = [
"build",
"cargo",
"git",
"gix",
"rustc",
] }
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.1"