[package]
edition = "2021"
name = "touchstone"
version = "0.12.1"
authors = ["Ian Cleary <iancleary@hey.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Touchstone (s2p, etc.) file parser, plotter, and more"
homepage = "https://github.com/iancleary/touchstone"
documentation = "https://docs.rs/touchstone"
readme = "README.md"
license = "MIT"
repository = "https://github.com/iancleary/touchstone"
[features]
cli = ["dep:tracing-subscriber"]
default = ["cli"]
[lib]
name = "touchstone"
path = "src/lib.rs"
[[bin]]
name = "touchstone"
path = "src/main.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "readme_examples"
path = "tests/readme_examples.rs"
[dependencies.rfconversions]
version = "0.7.0"
[dependencies.tracing]
version = "0.1.44"
default-features = false
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
optional = true