2021-04-01 03:49:44 +03:00
|
|
|
[package]
|
2021-05-10 12:23:26 +03:00
|
|
|
name = "marine-test-macro-impl"
|
2024-02-29 12:26:03 +02:00
|
|
|
version = "0.16.1"
|
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"]
|
2024-07-15 13:00:05 +03:00
|
|
|
license = "AGPL-3.0-only"
|
2021-04-01 03:49:44 +03:00
|
|
|
|
2021-04-01 14:46:33 +03:00
|
|
|
[package.metadata.docs.rs]
|
2021-04-01 03:49:44 +03:00
|
|
|
all-features = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-29 13:36:40 +04:00
|
|
|
fluence-app-service = { version = "0.35.1", features = ["raw-module-api"] }
|
2023-12-14 18:26:44 +04:00
|
|
|
marine-it-parser = "0.15.0"
|
2023-02-21 17:40:20 +03:00
|
|
|
itertools = "0.10.5"
|
2023-05-05 16:33:58 +03:00
|
|
|
darling = "0.20.1"
|
2023-03-17 15:32:15 +03:00
|
|
|
quote = "1.0.26"
|
2023-11-21 17:05:31 +03:00
|
|
|
proc-macro2 = "1.0.69"
|
2021-04-01 03:49:44 +03:00
|
|
|
proc-macro-error = { version = "1.0.4", default-features = false }
|
2023-05-05 16:33:58 +03:00
|
|
|
syn = { version = '2.0.15', features = ['full'] }
|
2023-05-05 15:33:56 +03:00
|
|
|
thiserror = "1.0.40"
|
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"
|