diff --git a/Cargo.toml b/Cargo.toml index c5694ab..3b476b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ members = [ "crates/notsecrets", "crates/nothooks", "crates/notstrap", + "crates/notgraph", "tests/integration", ] resolver = "2" diff --git a/crates/notgraph/Cargo.toml b/crates/notgraph/Cargo.toml new file mode 100644 index 0000000..d60407d --- /dev/null +++ b/crates/notgraph/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "notgraph" +version = "0.1.0" +edition = "2024" +license.workspace = true + +[lib] +name = "notgraph_lib" +path = "src/lib.rs" + +[[bin]] +name = "notgraph" +path = "src/main.rs" + +[dependencies] +anyhow = { workspace = true } +clap = { workspace = true } +serde = { workspace = true } +serde_json = "1" +cargo_metadata = "0.18" +syn = { version = "2", features = ["full", "visit"] } +walkdir = "2" diff --git a/crates/notgraph/src/lib.rs b/crates/notgraph/src/lib.rs new file mode 100644 index 0000000..cd40856 --- /dev/null +++ b/crates/notgraph/src/lib.rs @@ -0,0 +1 @@ +pub mod types; diff --git a/crates/notgraph/src/main.rs b/crates/notgraph/src/main.rs new file mode 100644 index 0000000..7f7732e --- /dev/null +++ b/crates/notgraph/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("notgraph"); +} diff --git a/crates/notgraph/src/types.rs b/crates/notgraph/src/types.rs new file mode 100644 index 0000000..45d542d --- /dev/null +++ b/crates/notgraph/src/types.rs @@ -0,0 +1 @@ +// types defined in Task 2