marine-rs-sdk/Cargo.toml
renovate[bot] 190ea058e7
chore(deps): update rust crate serde to 1.0.152 (#95)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-13 19:15:58 +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.2"
serde = { version = "1.0.152", 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",
]