From 779f36a18c2db76a3928801ca6cad139fa039e44e92fd1bee513e94928d37546 Mon Sep 17 00:00:00 2001 From: Alex Wied <2+alex@noreply.code.graphofliberty.org> Date: Mon, 18 May 2026 12:48:46 -0400 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ Cargo.lock | 11 +++++++++++ Cargo.toml | 6 ++++++ ldctl/Cargo.toml | 6 ++++++ ldctl/src/main.rs | 3 +++ ldp/Cargo.toml | 6 ++++++ ldp/src/lib.rs | 0 7 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 ldctl/Cargo.toml create mode 100644 ldctl/src/main.rs create mode 100644 ldp/Cargo.toml create mode 100644 ldp/src/lib.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea44339 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +/.idea diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..3c8a245 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,11 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ldctl" +version = "0.1.0" + +[[package]] +name = "ldp" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1fd1910 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +resolver = "2" +members = [ + "ldp", + "ldctl", +] diff --git a/ldctl/Cargo.toml b/ldctl/Cargo.toml new file mode 100644 index 0000000..9840c46 --- /dev/null +++ b/ldctl/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ldctl" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/ldctl/src/main.rs b/ldctl/src/main.rs new file mode 100644 index 0000000..cb512be --- /dev/null +++ b/ldctl/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/ldp/Cargo.toml b/ldp/Cargo.toml new file mode 100644 index 0000000..5fd74d8 --- /dev/null +++ b/ldp/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ldp" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/ldp/src/lib.rs b/ldp/src/lib.rs new file mode 100644 index 0000000..473a0f4