[package] name = "hotg-rune-proc-blocks" version = "0.11.3" edition = "2018" authors = ["The Rune Developers "] license = "MIT OR Apache-2.0" homepage = "https://hotg.dev/" repository = "https://github.com/hotg-ai/rune" categories = ["no-std", "science", "wasm"] keywords = ["rune", "proc-block", "tensorflow"] description = "Core tools and abstractions for developing proc blocks in Rune" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] hotg-rune-core = { path = "../rune-core", version = "^0.11.0", default-features = false } hotg-rune-proc-block-macros = { path = "../proc-block-macros", version = "^0.11.0", optional = true } serde = { version = "1.0.126", default-features = false, features = ["derive", "alloc"] } [dev-dependencies] difference = "2.0.0" pretty_assertions = "1" [features] default = ["derive"] derive = ["hotg-rune-proc-block-macros"] # Enable rustdoc's "This is supported on crate feature XXX only" annotations # (requires nightly) unstable_doc_cfg = [] [package.metadata.docs.rs] all-features = true