mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-12 10:55:32 +00:00
25 lines
759 B
TOML
25 lines
759 B
TOML
[package]
|
|
name = "fluence-sdk-macro"
|
|
version = "0.1.9" # remember to update html_root_url
|
|
edition = "2018"
|
|
description = "Definition of `#[invoke_handler]` attribute"
|
|
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro"
|
|
authors = ["Fluence Labs"]
|
|
keywords = ["fluence", "sdk", "webassembly", "procedural_macros"]
|
|
categories = ["api-bindings", "wasm"]
|
|
license = "Apache-2.0"
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[package.metadata.docs.rs] # https://docs.rs/about
|
|
all-features = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = '0.15.44', features = ['full'] }
|
|
quote = "0.6.13"
|
|
proc-macro2 = "0.4"
|
|
fluence-sdk-main = { path = "../main", version = "=0.1.9" }
|