This repository was archived by the owner on Aug 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (60 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
76 lines (60 loc) · 1.45 KB
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
67
68
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = [
"crates/colcon-deb-cli",
"crates/colcon-deb-core",
"crates/colcon-deb-config",
"crates/colcon-deb-docker",
"crates/colcon-deb-ros",
"crates/colcon-deb-debian",
"crates/colcon-deb-build",
]
[workspace.package]
version = "0.1.0"
authors = ["Colcon Deb Contributors"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/your-org/colcon-deb"
homepage = "https://github.com/your-org/colcon-deb"
rust-version = "1.75"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
# Docker integration
bollard = "0.15"
# CLI
clap = { version = "4.4", features = ["derive", "env"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Error handling
thiserror = "1.0"
eyre = "0.6"
color-eyre = "0.6"
# Logging and tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Progress UI
indicatif = "0.17"
crossterm = "0.27"
# XML parsing for ROS packages
quick-xml = { version = "0.31", features = ["serialize"] }
# File system
walkdir = "2.4"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# String patterns
regex = "1.10"
# Testing
tempfile = "3.8"
proptest = "1.4"
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
[profile.test]
opt-level = 0