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

28 lines
785 B
TOML
Raw Normal View History

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"
[package.metadata.docs.rs] # https://docs.rs/about
all-features = true
[lib]
proc-macro = true
[dependencies]
2021-03-31 08:36:54 +00:00
fluence-app-service = { version = "0.5.2", features = ["raw-module-api"] }
fce-wit-parser = "0.4.0"
darling = "0.12.2"
2021-03-28 14:05:35 +00:00
quote = "1.0.9"
proc-macro2 = "1.0.24"
2021-03-28 16:11:29 +00:00
syn = { version = '1.0.64', features = ['full'] }
2021-03-31 08:36:54 +00:00
thiserror = "1.0.24"
2021-03-28 14:05:35 +00:00
uuid = { version = "0.8.2", features = ["v4"] }