[package] name = "systemquery" version = "0.1.0" authors = ["Starbeamrainbowlabs "] 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