[package]
edition = "2024"
rust-version = "1.94"
name = "igc-net"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "igc-net protocol rust library — publish and add metadata to IGC flight files"
homepage = "https://igcnet.io"
documentation = "https://docs.rs/igc-net"
readme = "README.md"
keywords = [
"igc",
"p2p",
"paragliding",
"iroh",
"soaring",
]
categories = [
"network-programming",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/igc-net/igc-net-rs"
[lib]
name = "igc_net"
path = "src/lib.rs"
[[test]]
name = "dedup"
path = "tests/dedup.rs"
[[test]]
name = "eager_fetch"
path = "tests/eager_fetch.rs"
[[test]]
name = "geo_filtered"
path = "tests/geo_filtered.rs"
[[test]]
name = "metadata_only"
path = "tests/metadata_only.rs"
[[test]]
name = "multi_publisher"
path = "tests/multi_publisher.rs"
[dependencies.blake3]
version = "1.8.4"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.iroh]
version = "0.97"
[dependencies.iroh-blobs]
version = "0.99"
[dependencies.iroh-gossip]
version = "0.97"
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]