mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-12 02:50:18 +00:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
|
[package]
|
||
|
name = "fluence-sdk-main"
|
||
|
version = "0.1.9" # remember to update html_root_url
|
||
|
edition = "2018"
|
||
|
description = "Rust SDK for writing applications for Fluence"
|
||
|
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
||
|
repository = "https://github.com/fluencelabs/rust-sdk/crates/main"
|
||
|
authors = ["Fluence Labs"]
|
||
|
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"
|
||
|
crate-type = ["rlib"]
|
||
|
|
||
|
[dependencies]
|
||
|
log = { version = "0.4", features = ["std"] }
|
||
|
syn = { version = '0.15.0', features = ['full'] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
simple_logger = "1.0" # used in doc test
|
||
|
lazy_static = "1.3.0" # used in doc test
|
||
|
|
||
|
[features]
|
||
|
# Turn on the Wasm logger.
|
||
|
wasm_logger = []
|
||
|
|
||
|
# Make this module as side module.
|
||
|
side_module = []
|
||
|
|
||
|
# Notify the VM that this module expects Ethereum blocks.
|
||
|
expect_eth = []
|
||
|
|
||
|
# Turn on the module contained implementation of allocate/deallocate functions.
|
||
|
export_allocator = []
|