Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
228 changes: 228 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
[workspace]
resolver = "3"
members = ["packages/debmagic"]
members = ["packages/debmagic", "packages/debmagic-common"]

[workspace.package]
edition = "2024"
rust-version = "1.89"

[workspace.dependencies]
clap = { version = ">=4.5.23", features = ["derive"] }
anyhow = { version = ">=1.0.95" }
config = { version = ">=0.15.9", features = ["toml"] }
dirs = ">=5.0.0"
# thiserror = "2.0.17" # for future uses when we need clearer error handling
glob = ">=0.3.2"
libc = ">=0.2.169"
serde = { version = ">=1.0.217", features = ["derive"] }
serde_json = ">=1.0.139"
uuid = { version = ">=1.10.0", features = ["v4"] }
chrono = { version = ">=0.4.42" }
regex = { version = ">=1.12.2" }

# dev dependencies
test-case = { version = ">=3.3.1" }
19 changes: 6 additions & 13 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ Build-Depends:
librust-libc-dev (>=0.2.169),
librust-serde-dev (>=1.0.217),
librust-serde-json-dev (>=1.0.139),
librust-uuid-dev (>=1.10.0)
librust-uuid-dev (>=1.10.0),
librust-chrono-dev (>=0.4.42),
librust-regex-dev (>=1.12.2),
librust-test-case-dev (>=3.3.1),
librust-pyo3-dev (>=0.27.2)
Rules-Requires-Root: no
X-Style: black
Standards-Version: 4.7.2
Expand All @@ -29,21 +33,10 @@ Homepage: https://github.com/SFTtech/debmagic
Vcs-Git: https://github.com/SFTtech/debmagic.git
Vcs-Browser: https://github.com/SFTtech/debmagic

Package: python3-debmagic-common
Architecture: all
Depends:
python3-debian,
${misc:Depends},
${python3:Depends}
Multi-Arch: foreign
Description: Shared components for the debmagic debian buildtool suite
Collection of utilities and type definitions used in both the debmagic cli
buildtool as well as the debmagic python debian rules file library.

Package: debmagic-pkg
Architecture: all
Depends:
python3-debmagic-common,
python3-debian,
python3-pydantic,
${misc:Depends},
${python3:Depends}
Expand Down
Loading