[package]
edition = "2021"
name = "touchstone"
version = "0.14.2"
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"
keywords = [
"touchstone",
"s-parameters",
"rf",
"parser",
"plotting",
]
categories = [
"command-line-utilities",
"parser-implementations",
"science",
"visualization",
]
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 = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "generated_network_contracts"
path = "tests/generated_network_contracts.rs"
[[test]]
name = "in_memory_network"
path = "tests/in_memory_network.rs"
[[test]]
name = "matrix_api"
path = "tests/matrix_api.rs"
[[test]]
name = "network_builder"
path = "tests/network_builder.rs"
[[test]]
name = "readme_examples"
path = "tests/readme_examples.rs"
[[test]]
name = "s2p_coverage"
path = "tests/s2p_coverage.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