-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.07 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
[package]
name = "deployer"
version = "1.3.2"
edition = "2024"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.50"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
colored = "2"
ctrlc = "3.4"
dirs = "5.0"
env-file-reader = "0.3"
fs_extra = "1.2"
indicatif = "0.17"
inquire = { optional = true, git = "https://github.com/markcda/inquire.git", branch = "feat/reorder-values", features = ["reorder"] }
mimalloc = "0.1.43"
regex = "1.11"
russh = "0.49"
safe-path = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smart-patcher = { git = "https://github.com/impulse-sw/smart-patcher", tag = "0.2.0", default-features = false }
strip-ansi-escapes = "0.2"
termimad = "0.20"
tokio = { version = "1.0", features = ["rt-multi-thread", "io-std"] }
uuid = { version = "1.11", features = ["v4", "fast-rng"] }
vaultrs = "0.7"
[features]
default = ["python", "lua", "rhai", "tui"]
tests = []
i18n-ru = []
python = ["smart-patcher/python"]
lua = ["smart-patcher/lua"]
rhai = ["smart-patcher/rhai"]
tui = ["dep:inquire"]
[profile.release]
codegen-units = 1
lto = true