This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
aprs-trains/Cargo.toml
2022-12-19 20:46:32 -05:00

27 lines
838 B
TOML

[package]
name = "aprs-trains"
version = "0.1.0"
authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2021"
description = "Converts train locations to APRS objects"
readme = "README.md"
homepage = "https://github.com/ewpratten/aprs-trains"
repository = "https://github.com/ewpratten/aprs-trains"
license = "GPL-3.0"
keywords = []
categories = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "^0.11.13", default-features = false, features = [
"json",
"rustls-tls"
] }
serde = { version = "^1.0.126", features = ["derive"] }
tokio = { version = "^1.23.0", features = ["macros", "rt-multi-thread"] }
clap = { version = "^4.0.29", features = ["derive"] }
aprs-encode = "^0.1.2"
arrayvec = "^0.7"
serde-xml-rs = "^0.6.0"
regex = "^1.7.0"