2021-03-02 08:38:03 +00:00
|
|
|
[package]
|
2021-03-28 15:02:36 +00:00
|
|
|
name = "fluence-sdk-test-macro"
|
|
|
|
version = "0.5.0" # remember to update html_root_url
|
2021-03-02 08:38:03 +00:00
|
|
|
edition = "2018"
|
|
|
|
description = "Definition of the `#[fce_test]` macro"
|
2021-03-28 15:02:36 +00:00
|
|
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
|
2021-03-02 08:38:03 +00:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
keywords = ["fluence", "sdk", "webassembly", "procedural_macros"]
|
|
|
|
categories = ["api-bindings", "wasm"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
2021-04-01 11:46:33 +00:00
|
|
|
[package.metadata.docs.rs]
|
2021-03-02 08:38:03 +00:00
|
|
|
all-features = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-01 00:49:44 +00:00
|
|
|
fluence-sdk-test-macro-impl = { path = "../fce-test-macro-impl", version = "=0.5.0" }
|
2021-03-31 08:36:54 +00:00
|
|
|
|
2021-03-28 14:05:35 +00:00
|
|
|
quote = "1.0.9"
|
|
|
|
proc-macro2 = "1.0.24"
|
2021-03-31 23:15:24 +00:00
|
|
|
proc-macro-error = { version = "1.0.4", default-features = false }
|
2021-03-28 16:11:29 +00:00
|
|
|
syn = { version = '1.0.64', features = ['full'] }
|