2020-07-07 10:27:05 +03:00
|
|
|
[package]
|
2021-05-10 12:23:26 +03:00
|
|
|
name = "marine-macro-impl"
|
2024-02-21 12:46:39 +02:00
|
|
|
version = "0.14.0"
|
2020-07-07 10:27:05 +03:00
|
|
|
edition = "2018"
|
2021-05-10 12:23:26 +03:00
|
|
|
description = "Implementation of the `#[marine]` macro"
|
2021-05-14 18:07:40 +03:00
|
|
|
documentation = "https://docs.rs/fluence/marine-macro-impl"
|
2021-06-15 10:25:58 +03:00
|
|
|
repository = "https://github.com/fluencelabs/marine-rs-sdk/tree/master/crates/marine-macro-impl"
|
2020-07-08 21:03:44 +03:00
|
|
|
authors = ["Fluence Labs"]
|
2021-06-15 20:42:05 +03:00
|
|
|
keywords = ["fluence", "marine", "sdk", "webassembly", "interface-types"]
|
2020-07-08 21:03:44 +03:00
|
|
|
categories = ["api-bindings", "wasm"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
2021-04-01 14:46:33 +03:00
|
|
|
[package.metadata.docs.rs]
|
2020-07-08 21:03:44 +03:00
|
|
|
all-features = true
|
2020-07-07 10:27:05 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-24 15:45:35 +03:00
|
|
|
quote = "1.0.33"
|
2023-10-23 20:11:47 +03:00
|
|
|
proc-macro2 = "1.0.69"
|
2023-10-23 20:59:05 +03:00
|
|
|
serde = { version = "1.0.189", features = ["derive"] }
|
2023-10-23 21:51:42 +03:00
|
|
|
serde_json = "1.0.107"
|
2023-03-08 09:17:38 +03:00
|
|
|
syn = { version = '1.0.109', features = ['full', "extra-traits"] }
|
2021-04-06 13:14:10 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-23 20:18:03 +03:00
|
|
|
pretty_assertions = "1.4.0"
|
2021-09-01 20:34:35 +03:00
|
|
|
marine-macro-testing-utils = {path = "../macro-testing-utils"}
|