[package]
edition = "2024"
rust-version = "1.95"
name = "volant-protocol"
version = "0.1.0-alpha.6"
authors = ["Hugo Planque"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wire protocol shared by the Volant controller and agent"
homepage = "https://github.com/lorica-labs/volant"
readme = "README.md"
keywords = [
"ansible",
"automation",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-or-later"
repository = "https://github.com/lorica-labs/volant"
[lib]
name = "volant_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[lints.clippy]
assigning_clones = "warn"
default_trait_access = "warn"
format_collect = "warn"
format_push_string = "warn"
ignored_unit_patterns = "warn"
implicit_clone = "warn"
manual_let_else = "warn"
map_unwrap_or = "warn"
match_bool = "warn"
match_same_arms = "warn"
needless_continue = "warn"
needless_raw_string_hashes = "warn"
redundant_closure_for_method_calls = "warn"
ref_option = "warn"
semicolon_if_nothing_returned = "warn"
single_match_else = "warn"
trivially_copy_pass_by_ref = "warn"
unnested_or_patterns = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
unused_qualifications = "warn"