2021-04-01 00:49:44 +00:00
|
|
|
[package]
|
2021-05-10 09:23:26 +00:00
|
|
|
name = "marine-test-macro-impl"
|
2024-02-29 10:26:03 +00:00
|
|
|
version = "0.16.1"
|
2021-04-01 00:49:44 +00:00
|
|
|
edition = "2018"
|
2021-05-10 09:23:26 +00:00
|
|
|
description = "Implementation of the `#[marine_test]` macro"
|
2021-05-14 15:07:40 +00:00
|
|
|
documentation = "https://docs.rs/fluence/marine-test-macro-impl"
|
2021-06-15 07:25:58 +00:00
|
|
|
repository = "https://github.com/fluencelabs/marine-rs-sdk/tree/master/crates/marine-test-macro-impl"
|
2021-04-01 00:49:44 +00:00
|
|
|
authors = ["Fluence Labs"]
|
2021-06-15 07:25:58 +00:00
|
|
|
keywords = ["fluence", "marine", "sdk", "webassembly", "procedural_macros"]
|
2021-05-14 15:07:40 +00:00
|
|
|
categories = ["api-bindings", "wasm", "development-tools::testing"]
|
2024-07-15 10:00:05 +00:00
|
|
|
license = "AGPL-3.0-only"
|
2021-04-01 00:49:44 +00:00
|
|
|
|
2021-04-01 11:46:33 +00:00
|
|
|
[package.metadata.docs.rs]
|
2021-04-01 00:49:44 +00:00
|
|
|
all-features = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-29 09:36:40 +00:00
|
|
|
fluence-app-service = { version = "0.35.1", features = ["raw-module-api"] }
|
2023-12-14 14:26:44 +00:00
|
|
|
marine-it-parser = "0.15.0"
|
2023-02-21 14:40:20 +00:00
|
|
|
itertools = "0.10.5"
|
2023-05-05 13:33:58 +00:00
|
|
|
darling = "0.20.1"
|
2023-03-17 12:32:15 +00:00
|
|
|
quote = "1.0.26"
|
2023-11-21 14:05:31 +00:00
|
|
|
proc-macro2 = "1.0.69"
|
2021-04-01 00:49:44 +00:00
|
|
|
proc-macro-error = { version = "1.0.4", default-features = false }
|
2023-05-05 13:33:58 +00:00
|
|
|
syn = { version = '2.0.15', features = ['full'] }
|
2023-05-05 12:33:56 +00:00
|
|
|
thiserror = "1.0.40"
|
2021-09-01 17:34:35 +00:00
|
|
|
static_assertions = "1.1.0"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-07 17:05:04 +00:00
|
|
|
marine-macro-testing-utils = "0.1.0"
|