initial commit

This commit is contained in:
neo_1993
2026-07-30 15:27:12 +02:00
commit 0e732deb66
5 changed files with 24 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
target/
# Added by cargo
/target
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "ruport"
version = "0.1.0"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "ruport"
version = "0.1.0"
edition = "2024"
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
# Ruport
Ruport is another package manager for gentoo, which uses the portage structure and config files. Per default it comes with the cli-interface ruport, but it has a drop-in feature, where it also provides emerge, emaint and other tools.
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}