30 lines
971 B
TOML
Raw Normal View History

2021-04-01 03:49:44 +03:00
[package]
2021-05-10 12:23:26 +03:00
name = "marine-test-macro-impl"
version = "0.8.2"
2021-04-01 03:49:44 +03:00
edition = "2018"
2021-05-10 12:23:26 +03:00
description = "Implementation of the `#[marine_test]` macro"
documentation = "https://docs.rs/fluence/marine-test-macro-impl"
repository = "https://github.com/fluencelabs/marine-rs-sdk/tree/master/crates/marine-test-macro-impl"
2021-04-01 03:49:44 +03:00
authors = ["Fluence Labs"]
keywords = ["fluence", "marine", "sdk", "webassembly", "procedural_macros"]
categories = ["api-bindings", "wasm", "development-tools::testing"]
2021-04-01 03:49:44 +03:00
license = "Apache-2.0"
2021-04-01 14:46:33 +03:00
[package.metadata.docs.rs]
2021-04-01 03:49:44 +03:00
all-features = true
[dependencies]
fluence-app-service = { version = "0.25.0", features = ["raw-module-api"] }
marine-it-parser = "0.12.0"
itertools = "0.10.5"
darling = "0.14.4"
quote = "1.0.21"
proc-macro2 = "1.0.51"
2021-04-01 03:49:44 +03:00
proc-macro-error = { version = "1.0.4", default-features = false }
syn = { version = '1.0.109', features = ['full'] }
thiserror = "1.0.38"
static_assertions = "1.1.0"
[dev-dependencies]
2021-10-07 20:05:04 +03:00
marine-macro-testing-utils = "0.1.0"