[package]
edition = "2021"
rust-version = "1.70"
name = "linkbudget"
version = "0.6.2"
authors = ["Ian Cleary <iancleary@hey.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A link budget toolbox for satellite communications"
homepage = "https://github.com/iancleary/linkbudget"
documentation = "https://docs.rs/linkbudget"
readme = "README.md"
keywords = [
"rf",
"satellite",
"link-budget",
"communications",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/iancleary/linkbudget"
[features]
cli = ["dep:tracing-subscriber"]
default = ["cli"]
[lib]
name = "linkbudget"
path = "src/lib.rs"
[[bin]]
name = "linkbudget"
path = "src/main.rs"
[[test]]
name = "readme_examples"
path = "tests/readme_examples.rs"
[[test]]
name = "scenarios"
path = "tests/scenarios.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