2021-04-01 03:49:44 +03:00
|
|
|
[package]
|
2021-05-10 12:23:26 +03:00
|
|
|
name = "marine-test-macro-impl"
|
2023-02-21 19:27:37 +02:00
|
|
|
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"
|
2021-05-14 18:07:40 +03:00
|
|
|
documentation = "https://docs.rs/fluence/marine-test-macro-impl"
|
2021-06-15 10:25:58 +03:00
|
|
|
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"]
|
2021-06-15 10:25:58 +03:00
|
|
|
keywords = ["fluence", "marine", "sdk", "webassembly", "procedural_macros"]
|
2021-05-14 18:07:40 +03:00
|
|
|
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]
|
2023-03-16 21:17:30 +03:00
|
|
|
fluence-app-service = { version = "0.25.0", features = ["raw-module-api"] }
|
|
|
|
marine-it-parser = "0.12.0"
|
2023-02-21 17:40:20 +03:00
|
|
|
itertools = "0.10.5"
|
2023-03-16 22:16:43 +03:00
|
|
|
darling = "0.14.4"
|
2022-09-09 17:47:01 +03:00
|
|
|
quote = "1.0.21"
|
2023-02-21 17:07:11 +03:00
|
|
|
proc-macro2 = "1.0.51"
|
2021-04-01 03:49:44 +03:00
|
|
|
proc-macro-error = { version = "1.0.4", default-features = false }
|
2023-03-16 22:15:25 +03:00
|
|
|
syn = { version = '1.0.109', features = ['full'] }
|
2023-02-21 16:57:27 +03:00
|
|
|
thiserror = "1.0.38"
|
2021-09-01 20:34:35 +03:00
|
|
|
static_assertions = "1.1.0"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-07 20:05:04 +03:00
|
|
|
marine-macro-testing-utils = "0.1.0"
|