-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (50 loc) · 1.46 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
[workspace]
members = [".", "crates/blue-config", "crates/blue-docker", "crates/blue-git"]
[workspace.package]
version = "0.0.1"
license = "GPL-3.0"
edition = "2021"
homepage = "https://github.com/slekup/blue"
repository = "https://github.com/slekup/blue"
authors = ["Slekup <[email protected]>"]
[package]
name = "blue-cli"
readme = "README.md"
documentation = "https://blue.slekup.com"
description = "Fast and extensible workspace manager"
keywords = ["workspace", "manager", "cli", "fast", "extensible"]
categories = ["cli", "workspace", "manager", "tool"]
default-run = "blue"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
[workspace.dependencies]
blue_config = { path = "crates/blue-config" }
blue_docker = { path = "crates/blue-docker" }
blue_git = { path = "crates/blue-git" }
blue_log = { path = "crates/blue-log" }
regex = "1.10.2"
tracing = "0.1.40"
[[bin]]
name = "blue"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
[dependencies]
blue_config = { workspace = true }
blue_docker = { workspace = true }
blue_git = { workspace = true }
blue_log = { workspace = true }
regex = { workspace = true }
tracing = { workspace = true }
clap = { version = "4.4.8", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_derive = "1.0.193"
glob = "0.3.1"
home = "0.5.5"
toml = "0.8.8"
serde_json = "1.0.108"