37 lines
954 B
TOML
Raw Normal View History

2019-10-07 14:01:20 +03:00
[package]
name = "fluence-sdk-main"
version = "0.6.8" # remember to update html_root_url
2019-10-07 14:01:20 +03:00
edition = "2018"
2020-07-08 12:38:56 +03:00
description = "Rust SDK for applications for the Fluence network"
documentation = "https://docs.rs/fluence-sdk-main"
repository = "https://github.com/fluencelabs/rust-sdk/tree/master/crates/main"
2019-10-07 14:01:20 +03:00
authors = ["Fluence Labs"]
keywords = ["fluence", "sdk", "webassembly"]
categories = ["api-bindings", "wasm"]
license = "Apache-2.0"
2021-04-01 14:46:33 +03:00
[package.metadata.docs.rs]
2019-10-07 14:01:20 +03:00
all-features = true
[lib]
path = "src/lib.rs"
crate-type = ["rlib"]
2021-04-01 18:36:25 +03:00
doctest = false
2019-10-07 14:01:20 +03:00
[dependencies]
marine-macro = { path = "../marine-macro", version = "=0.6.8" }
log = { version = "0.4.8", features = ["std"] }
serde = "=1.0.118"
2019-10-07 14:01:20 +03:00
[dev-dependencies]
simple_logger = "1.6.0" # used in doc test
lazy_static = "1.4.0" # used in doc test
2019-10-07 14:01:20 +03:00
[features]
2020-07-01 00:50:56 +03:00
# Print some internal logs by log_utf8_string
2020-07-08 12:38:56 +03:00
debug = []
2020-07-14 00:36:23 +03:00
# Enable logger (this will cause log_utf8_string to appear in imports)
2020-07-14 00:36:23 +03:00
logger = []