[package]
edition = "2021"
name = "sdtn"
version = "0.1.4"
authors = ["ray-gee"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SpaceArth DTN - A Rust-based implementation of Delay Tolerant Networking (DTN) for resilient communication"
readme = "README.md"
keywords = [
"dtn",
"dtn7",
"bundle-protocol",
"rfc9171",
]
categories = [
"asynchronous",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ray-Gee/spacearth-dtn"
[lib]
name = "sdtn"
path = "src/lib.rs"
[[bin]]
name = "sdtn"
path = "src/bin/cli.rs"
[[example]]
name = "advanced"
path = "examples/advanced.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "routing"
path = "examples/routing.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.btleplug]
version = "0.11.8"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.config]
version = "0.15.11"
[dependencies.env_logger]
version = "0.11.8"
[dependencies.futures]
version = "0.3.31"
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_cbor]
version = "0.11"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.uuid]
version = "1.17.0"
[dev-dependencies.tempfile]
version = "3.20.0"
[target.'cfg(target_os = "linux")'.dependencies.bluer]
version = "0.17.4"
features = ["bluetoothd"]