[package]
edition = "2024"
rust-version = "1.96"
name = "hrrr"
version = "0.10.0"
build = false
include = [
"src/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast native HRRR forecast-field viewer"
homepage = "https://github.com/aoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoa/hrrr"
documentation = "https://docs.rs/hrrr"
readme = "README.md"
keywords = [
"hrrr",
"weather",
"egui",
"wgpu",
"grib",
]
categories = [
"gui",
"science::geo",
]
license = "MIT"
repository = "https://github.com/aoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoaoa/hrrr"
[package.metadata.rust-starter]
format_command = [
"cargo",
"fmt",
"--all",
"--check",
]
clippy_command = [
"cargo",
"clippy",
"--locked",
"--workspace",
"--all-targets",
"--all-features",
]
test_command = [
"cargo",
"test",
"--locked",
"--workspace",
"--all-targets",
"--all-features",
]
doc_command = [
"cargo",
"doc",
"--locked",
"--workspace",
"--all-features",
"--no-deps",
]
canonicalize_commands = [
[
"cargo",
"fix",
"--workspace",
"--all-targets",
"--all-features",
"--allow-dirty",
"--allow-staged",
"--allow-no-vcs",
],
[
"cargo",
"clippy",
"--fix",
"--workspace",
"--all-targets",
"--all-features",
"--allow-dirty",
"--allow-staged",
"--allow-no-vcs",
],
[
"cargo",
"fmt",
"--all",
],
]
[package.metadata.rust-starter.source_files]
max_lines = 3000
include = [
"*.rs",
"**/*.rs",
]
exclude = []
[features]
egui-test = [
"dep:egui-tester-witness",
"eternalist-apps/egui-test",
]
[[bin]]
name = "hrrr"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.atomic-write-file]
version = "0.3.0"
[dependencies.bytemuck]
version = "1.24.0"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.directories]
version = "6.0.0"
[dependencies.dwemer_poolrooms]
version = "0.9.0"
[dependencies.egui]
version = "=0.34.3"
[dependencies.egui-tester-witness]
version = "0.6.0"
features = ["egui"]
optional = true
[dependencies.egui-wgpu]
version = "=0.34.3"
[dependencies.eternalist-apps]
version = "0.3.0"
features = ["serde"]
[dependencies.fast-mvt]
version = "0.6.1"
features = ["reader"]
default-features = false
[dependencies.flate2]
version = "1.1.5"
[dependencies.fs4]
version = "0.12.0"
[dependencies.geo-types]
version = "0.7.19"
[dependencies.grib]
version = "0.16.0"
default-features = false
[dependencies.hrrr-contract]
version = "0.1.0"
[dependencies.jiff]
version = "0.2.33"
[dependencies.lyon_tessellation]
version = "1.0.20"
[dependencies.pmtiles]
version = "0.23.1"
features = ["mmap-async-tokio"]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.sha2]
version = "0.10.9"
[dependencies.tar]
version = "0.4.44"
default-features = false
[dependencies.tokio]
version = "1.48.0"
features = ["rt"]
[dependencies.toml]
version = "1.1.2"
[dependencies.ureq]
version = "3.3.0"
[dependencies.zip]
version = "7.2.0"
features = ["deflate-flate2-zlib-rs"]
default-features = false
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies.tray-icon]
version = "0.24.1"
default-features = false
[target.'cfg(target_os = "linux")'.dependencies.nix]
version = "0.30.1"
features = ["poll"]
default-features = false
[target.'cfg(target_os = "linux")'.dependencies.x11rb]
version = "0.13.2"
features = ["randr"]
default-features = false
[lints.clippy]
allow_attributes_without_reason = "deny"
cargo_common_metadata = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
dbg_macro = "deny"
enum_glob_use = "allow"
expect_used = "deny"
float_cmp = "allow"
ignored_unit_patterns = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
many_single_char_names = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
no_effect_underscore_binding = "allow"
panic = "deny"
redundant_closure_for_method_calls = "allow"
ref_option = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
struct_field_names = "allow"
todo = "deny"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
unimplemented = "deny"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
unused_async = "allow"
unwrap_used = "deny"
used_underscore_binding = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "deny"
priority = -2
[lints.clippy.cargo]
level = "warn"
priority = -3
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
ambiguous_glob_imports = "allow"
ambiguous_glob_reexports = "allow"
elided_lifetimes_in_paths = "deny"
hidden_glob_reexports = "allow"
unexpected_cfgs = "deny"
unsafe_code = "deny"
unused_crate_dependencies = "warn"
unused_lifetimes = "deny"
unused_qualifications = "deny"
unused_results = "deny"
warnings = "deny"
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"