[package]
edition = "2024"
name = "npnp"
version = "0.1.11"
authors = ["linkyourbin"]
build = false
include = [
"Cargo.lock",
"Cargo.toml",
"README.md",
"README.zh-CN.md",
"LICENSE.md",
"assets/**",
"imgs/**",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Normalize Pin Net Pad (npnp): pure Rust LCEDA/EasyEDA downloader and Altium library exporter"
documentation = "https://docs.rs/npnp"
readme = "README.md"
keywords = [
"altium",
"easyeda",
"lcsc",
"electronics",
"eda",
]
categories = ["command-line-utilities"]
license = "PolyForm-Noncommercial-1.0.0"
repository = "https://github.com/linkyourbin/npnp"
[lib]
name = "npnp"
path = "src/lib.rs"
[[bin]]
name = "npnp"
path = "src/main.rs"
[[test]]
name = "export_regression"
path = "tests/export_regression.rs"
[dependencies.cfb]
version = "0.14.0"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]