34 lines
741 B
TOML
34 lines
741 B
TOML
[package]
|
|
name = "notforge"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
description = "Forge lifecycle and repository provisioning for notfiles"
|
|
|
|
[lib]
|
|
name = "notforge"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "notforge"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
clap = { workspace = true }
|
|
miette = { workspace = true }
|
|
notcore = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
toml = { workspace = true }
|
|
ureq = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|