systemquery/Cargo.toml
Starbeamrainbowlabs 2e062fd78f
Start setting up a handler, but it's not working right just yet.
We probably want to go back and look at the tokio examples again.
2021-09-29 02:44:33 +01:00

23 lines
767 B
TOML

[package]
name = "systemquery"
version = "0.1.0"
authors = ["Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4" # Apparently Rust has an entire logging setup - this is the base crate
pretty_env_logger = "0.4" # The logging implementation we've chosen for the above
clap = "2" # CLI argument parser
serde = { version = "1.0", features = ["derive"] } # Serialisation
serde_derive = "1.0" # Serialisation helper
toml = "0.5" # TOML serialisation module
tokio = { version = "1", features = ["full"] } # Async runtime
psk-client = { version = "0.1", features = ["vendored-openssl"] } # Pre-shared key TLS support