mirror of
https://github.com/fluencelabs/marine-rs-sdk
synced 2025-03-14 22:10:49 +00:00
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "marine-rs-sdk"
|
|
version = "0.8.0"
|
|
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.8.0" }
|
|
marine-rs-sdk-main = { path = "crates/main", version = "=0.8.0" } # warning: silent compilation break on minor verison bump. See docs/update-guide.md for details
|
|
marine-timestamp-macro = { path = "crates/timestamp-macro", version = "=0.8.0" }
|
|
polyplets = "0.4.0"
|
|
|
|
serde = { version = "1.0.155", 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",
|
|
]
|