首次提交

This commit is contained in:
2026-01-23 13:43:18 +08:00
commit 677681e0f3
11 changed files with 1701 additions and 0 deletions

6
build.rs Normal file
View File

@@ -0,0 +1,6 @@
fn main() {
cxx_build::bridge("src/lib.rs")
.std("c++20")
.compile("dnf_utils");
println!("cargo:rerun-if-changed=src/lib.rs");
}