26 lines
808 B
TOML
Raw Permalink Normal View History

2020-07-07 10:27:05 +03:00
[package]
2021-05-10 12:23:26 +03:00
name = "marine-macro-impl"
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"
documentation = "https://docs.rs/fluence/marine-macro-impl"
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]
quote = "1.0.33"
proc-macro2 = "1.0.69"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
syn = { version = '1.0.109', features = ['full', "extra-traits"] }
2021-04-06 13:14:10 +03:00
[dev-dependencies]
pretty_assertions = "1.4.0"
marine-macro-testing-utils = {path = "../macro-testing-utils"}