[package]
edition = "2021"
name = "gainlineup"
version = "0.22.2"
authors = ["Ian Cleary <iancleary@hey.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Gain Lineup toolbox for RF Modeling"
homepage = "https://github.com/iancleary/gainlineup"
documentation = "https://docs.rs/gainlineup"
readme = "README.md"
license = "MIT"
repository = "https://github.com/iancleary/gainlineup"
[features]
cli = ["dep:tracing-subscriber"]
default = [
"cli",
"plot",
]
plot = []
[lib]
name = "gainlineup"
path = "src/lib.rs"
[[bin]]
name = "gainlineup"
path = "src/main.rs"
[[test]]
name = "cross_crate_cascade_validation"
path = "tests/cross_crate_cascade_validation.rs"
[[test]]
name = "integration_rf_scenarios"
path = "tests/integration_rf_scenarios.rs"
[[test]]
name = "readme_01_input_signal"
path = "tests/readme_01_input_signal.rs"
[[test]]
name = "readme_02_blocks"
path = "tests/readme_02_blocks.rs"
[[test]]
name = "readme_03_cascade"
path = "tests/readme_03_cascade.rs"
[[test]]
name = "readme_04_compression"
path = "tests/readme_04_compression.rs"
[[test]]
name = "readme_05_dynamic_range"
path = "tests/readme_05_dynamic_range.rs"
[[test]]
name = "readme_06_am_am_single_block"
path = "tests/readme_06_am_am_single_block.rs"
[[test]]
name = "readme_07_am_am_cascade"
path = "tests/readme_07_am_am_cascade.rs"
[[test]]
name = "readme_08_imd3"
path = "tests/readme_08_imd3.rs"
[[test]]
name = "readme_09_node_dynamic_range"
path = "tests/readme_09_node_dynamic_range.rs"
[[test]]
name = "readme_10_amplifier_model"
path = "tests/readme_10_amplifier_model.rs"
[dependencies.rfconversions]
version = "0.7.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.toml]
version = "0.9.8"
[dependencies.touchstone]
version = "0.12.1"
[dependencies.tracing]
version = "0.1.44"
default-features = false
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
optional = true