24 lines
663 B
TOML
Raw Normal View History

2021-03-02 11:38:03 +03:00
[package]
2021-03-28 18:02:36 +03:00
name = "fluence-sdk-test-macro"
version = "0.5.0" # remember to update html_root_url
2021-03-02 11:38:03 +03:00
edition = "2018"
description = "Definition of the `#[fce_test]` macro"
2021-03-28 18:02:36 +03:00
repository = "https://github.com/fluencelabs/rust-sdk/crates/macro-test"
2021-03-02 11:38:03 +03:00
authors = ["Fluence Labs"]
keywords = ["fluence", "sdk", "webassembly", "procedural_macros"]
categories = ["api-bindings", "wasm"]
license = "Apache-2.0"
[package.metadata.docs.rs] # https://docs.rs/about
all-features = true
[lib]
proc-macro = true
[dependencies]
2021-03-28 17:05:35 +03:00
quote = "1.0.9"
proc-macro2 = "1.0.24"
2021-03-28 19:11:29 +03:00
syn = { version = '1.0.64', features = ['full'] }
2021-03-28 17:05:35 +03:00
uuid = { version = "0.8.2", features = ["v4"] }
2021-03-28 22:51:50 +03:00
darling = "0.12.2"