52 lines
835 B
TOML
52 lines
835 B
TOML
[package]
|
|
name = "anvil"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["Eric Ratliff <eric@nxlearn.net>"]
|
|
description = "Arduino project generator and build tool - forges clean embedded projects"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "anvil"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "anvil"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# CLI framework
|
|
clap = { version = "4.4", features = ["derive", "cargo"] }
|
|
|
|
# Filesystem
|
|
dirs = "5.0"
|
|
|
|
# Configuration
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
|
|
# Embedded templates
|
|
include_dir = "0.7"
|
|
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
# Colors
|
|
colored = "2.1"
|
|
|
|
# Process / which
|
|
which = "5.0"
|
|
home = "=0.5.9"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.13"
|
|
assert_cmd = "2.0"
|
|
predicates = "3.1"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true |