commit 779f36a18c2db76a3928801ca6cad139fa039e44e92fd1bee513e94928d37546 Author: Alex Wied <2+alex@noreply.code.graphofliberty.org> Date: Mon May 18 12:48:46 2026 -0400 Initial commit 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