-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.16 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
[package]
name = "swde"
version = "1.0.1"
authors = ["cyl3x <[email protected]>"]
edition = "2021"
repository = "https://git.cyl3x.de/cyl3x/shopware-devenv"
description = "Wrapper for the Shopware devenv development environment"
license-file = "LICENSE"
readme = "README.md"
keywords = ["shopware", "devenv", "swde", "platform"]
categories = ["filesystem", "development-tools"]
[[bin]]
name = "swde"
path = "src/main.rs"
[profile.release]
codegen-units = 1
debug = false
lto = "fat"
opt-level = 3
strip = "debuginfo"
[dependencies]
clap = { version = "4.5.27", features = ["derive", "suggestions"] }
regex = { version = "1.11.1", default-features = false, features = ["std"] }
serde = { version = "1.0.217", default-features = false, features = ["serde_derive"] }
once_cell = { version = "1.20.2", default-features = false, features = ["std"] }
sysinfo = { version = "0.33.1", default-features = false, features = ["system"]}
sha2 = { version = "0.10.8", default-features = false }
libc = { version = "0.2.169", default-features = false }
colored = "3.0.0"
serde_json = "1.0.138"
clap_complete = "4.5.44"
dotenv-parser = "0.1.3"
rand = "0.9.0"
anyhow = "1.0.95"
color-eyre = "0.6.3"