marine-rs-sdk-test/crates/marine-test-macro/Cargo.toml

26 lines
737 B
TOML
Raw Normal View History

2021-03-02 08:38:03 +00:00
[package]
2021-05-10 09:23:26 +00:00
name = "marine-test-macro"
2021-05-10 17:12:02 +00:00
version = "0.1.6" # remember to update html_root_url
2021-03-02 08:38:03 +00:00
edition = "2018"
2021-05-10 09:23:26 +00:00
description = "Definition of the `#[marine_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
2021-04-01 15:36:25 +00:00
doctest = false
2021-03-02 08:38:03 +00:00
[dependencies]
2021-05-10 09:23:26 +00:00
marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "0.1.5" }
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'] }