[package]
edition = "2021"
name = "hyperstack-macros"
version = "0.6.8"
authors = ["Hypertek"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macros for defining HyperStack streams"
documentation = "https://docs.rs/hyperstack-macros"
readme = "README.md"
keywords = [
"hyperstack",
"streaming",
"macros",
"proc-macro",
]
categories = ["development-tools::procedural-macro-helpers"]
license-file = "LICENSE"
repository = "https://github.com/HyperTekOrg/hyperstack.git"
[lib]
name = "hyperstack_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "key_resolution_dynamic"
path = "tests/key_resolution_dynamic.rs"
[[test]]
name = "phase0_dynamic"
path = "tests/phase0_dynamic.rs"
[[test]]
name = "phase1_runtime"
path = "tests/phase1_runtime.rs"
[[test]]
name = "phase2_dynamic"
path = "tests/phase2_dynamic.rs"
[[test]]
name = "phase3_dynamic"
path = "tests/phase3_dynamic.rs"
[[test]]
name = "phase4_dynamic"
path = "tests/phase4_dynamic.rs"
[[test]]
name = "phase5_dynamic"
path = "tests/phase5_dynamic.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.bs58]
version = "0.5"
[dependencies.hex]
version = "0.4"
[dependencies.hyperstack-idl]
version = "0.1.6"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
"extra-traits",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.trybuild]
version = "1.0"