4f08161315
- Fixed HeaderMapInit parsing bug that would cause compilation errors - Added comprehensive documentation with usage examples and DSL reference - Improved error handling with better error messages for invalid headers - Added test coverage for both macro and registry functionality - Added debug inspection capabilities for registered configurations - Fixed module name conflicts in tests by using separate modules All tests now passing: - 7 macro tests validating DSL parsing and code generation - 4 registry tests verifying configuration collection and application
28 lines
555 B
TOML
28 lines
555 B
TOML
[package]
|
|
name = "nym-http-api-client-macro"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
syn = { workspace = true, features = ["full"] }
|
|
quote = "1.0.40"
|
|
proc-macro-crate = "3"
|
|
|
|
[dev-dependencies]
|
|
nym-http-api-client = { path = "../http-api-client" }
|
|
reqwest = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|