[package]
edition = "2024"
rust-version = "1.85"
name = "conduit-derive"
version = "2.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc macros for conduit-core: Encode, Decode, #[command], handler!()."
homepage = "https://github.com/userFRM/tauri-conduit"
readme = "README.md"
keywords = [
"tauri",
"ipc",
"derive",
"binary",
"codec",
]
categories = [
"gui",
"network-programming",
"development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/userFRM/tauri-conduit"
resolver = "2"
[lib]
name = "conduit_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "derive_tests"
path = "tests/derive_tests.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.sonic-rs]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]
[dev-dependencies.trybuild]
version = "1"