summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-10-23 00:50:55 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-10-23 00:50:55 -0400
commit6e4b45027e993f805346809f22d7a209bb477d2f (patch)
tree51964e29620a66c5d41f7d977b5fbc2f3c313a06
parent264041a0f5e3d98fb3a1829927b58a15e1d4fdf4 (diff)
downloadgentoo-utils-6e4b45027e993f805346809f22d7a209bb477d2f.tar.gz
add get crate
-rw-r--r--Cargo.lock59
-rw-r--r--Cargo.toml3
2 files changed, 61 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..45e8f1e
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,59 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 4
+
+[[package]]
+name = "gentoo-utils"
+version = "0.1.0"
+dependencies = [
+ "get",
+ "mon",
+]
+
+[[package]]
+name = "get"
+version = "0.0.0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "mon"
+version = "0.1.0"
+
+[[package]]
+name = "proc-macro2"
+version = "1.0.101"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
+dependencies = [
+ "unicode-ident",
+]
+
+[[package]]
+name = "quote"
+version = "1.0.41"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "syn"
+version = "2.0.107"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2a26dbd934e5451d21ef060c018dae56fc073894c5a7896f882928a76e6d081b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "unicode-ident",
+]
+
+[[package]]
+name = "unicode-ident"
+version = "1.0.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
diff --git a/Cargo.toml b/Cargo.toml
index e4971d5..0560fe5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,4 +4,5 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-mon = { path = "../mon" } \ No newline at end of file
+mon = { path = "../mon" }
+get = { path = "../get" } \ No newline at end of file