mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 15:20:18 +00:00
33 lines
892 B
TOML
33 lines
892 B
TOML
[package]
|
|
name = "fluence"
|
|
version = "0.1.11" # remember to update html_root_url
|
|
description = "Fluence backend SDK for developing backend applications for the Fluence network"
|
|
documentation = "https://docs.rs/fluence/"
|
|
repository = "https://github.com/fluencelabs/rust-sdk"
|
|
authors = ["Fluence Labs"]
|
|
readme = "Readme.md"
|
|
keywords = ["fluence", "sdk", "webassembly"]
|
|
categories = ["api-bindings", "wasm"]
|
|
license = "Apache-2.0"
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[package.metadata.docs.rs] # https://docs.rs/about
|
|
all-features = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.11" }
|
|
fluence-sdk-main = { path = "crates/main", version = "=0.1.11" }
|
|
|
|
[features]
|
|
# Print some internal logs by log_utf8_string
|
|
print_logs = ["fluence-sdk-main/print_logs"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/main",
|
|
"crates/macro",
|
|
]
|