2021-09-28 22:47:52 +00:00
|
|
|
[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]
|
2021-09-28 22:55:34 +00:00
|
|
|
log = "0.4" # Apparently Rust has an entire logging setup - this is the base crate
|
2021-09-28 22:47:52 +00:00
|
|
|
pretty_env_logger = "0.4" # The logging implementation we've chosen for the above
|
|
|
|
|
|
|
|
clap = "2" # CLI argument parser
|
|
|
|
|
2021-09-28 22:55:34 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] } # Serialisation
|
|
|
|
serde_derive = "1.0" # Serialisation helper
|
|
|
|
toml = "0.5" # TOML serialisation module
|
|
|
|
|
2021-09-29 01:44:33 +00:00
|
|
|
tokio = { version = "1", features = ["full"] } # Async runtime
|
2021-09-28 22:55:34 +00:00
|
|
|
|
2021-09-28 22:47:52 +00:00
|
|
|
|
|
|
|
psk-client = { version = "0.1", features = ["vendored-openssl"] } # Pre-shared key TLS support
|