marine-rs-sdk/Cargo.toml
Anatolios Laskaris 17e420f657
chore(ci): Add release-please (#100)
* Add release-please

* Fix

* Fix

* No to wasmer

* use older rust-toolchain with compatible error messages

---------

Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
2023-02-07 19:58:04 +03:00

48 lines
1.3 KiB
TOML

[package]
name = "marine-rs-sdk"
version = "0.7.1"
description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence"
repository = "https://github.com/fluencelabs/marine-rs-sdk"
authors = ["Fluence Labs"]
keywords = ["fluence", "marine", "sdk", "webassembly"]
categories = ["api-bindings", "wasm"]
license = "Apache-2.0"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[lib]
path = "src/lib.rs"
doctest = false
[dependencies]
marine-macro = { path = "crates/marine-macro", version = "=0.7.1" }
marine-rs-sdk-main = { path = "crates/main", version = "=0.7.1" }
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.7.1" }
polyplets = "0.3.0"
serde = { version = "1.0.118", features = ["derive"]}
[dev-dependencies]
trybuild = "1.0"
[features]
# Print some internal logs by log_utf8_string
debug = ["marine-rs-sdk-main/debug"]
# Enable logger (this will cause log_utf8_string to appear in imports)
logger = ["marine-rs-sdk-main/logger"]
# Remove _initialize function with explicit call to __wasm_call_ctors
no-explicit-ctors-call = []
[workspace]
members = [
"crates/main",
"crates/marine-macro",
"crates/marine-macro-impl",
"crates/timestamp-macro",
]