feat(notgraph): scaffold crate with lib+bin targets

This commit is contained in:
Joseph O'Brien
2026-04-02 02:23:46 -04:00
parent 90a1de4e06
commit f9bd96530e
5 changed files with 28 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ members = [
"crates/notsecrets",
"crates/nothooks",
"crates/notstrap",
"crates/notgraph",
"tests/integration",
]
resolver = "2"

View File

@@ -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"

View File

@@ -0,0 +1 @@
pub mod types;

View File

@@ -0,0 +1,3 @@
fn main() {
println!("notgraph");
}

View File

@@ -0,0 +1 @@
// types defined in Task 2