[package]
edition = "2024"
rust-version = "1.85"
name = "codehelion-helper-protocol"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Versioned wire protocol and compiler IR shared with codehelion helpers."
homepage = "https://github.com/libraz/codehelion"
readme = false
license = "Apache-2.0"
repository = "https://github.com/libraz/codehelion"
[lib]
name = "codehelion_helper_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1