marine-rs-sdk-test/crates/main/Cargo.toml

38 lines
1.0 KiB
TOML
Raw Normal View History

2019-10-07 11:01:20 +00:00
[package]
name = "fluence-sdk-main"
2020-09-02 23:46:38 +00:00
version = "0.2.2" # remember to update html_root_url
2019-10-07 11:01:20 +00:00
edition = "2018"
2020-07-08 09:38:56 +00:00
description = "Rust SDK for applications for the Fluence network"
2019-10-07 11:01:20 +00:00
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"
[package.metadata.docs.rs] # https://docs.rs/about
all-features = true
[lib]
path = "src/lib.rs"
crate-type = ["rlib"]
[dependencies]
log = { version = "0.4.8", features = ["std"] }
2020-09-02 23:46:38 +00:00
fluence-sdk-macro = { path = "../macro", version = "=0.2.2" }
2020-08-22 10:56:27 +00:00
serde = "1.0.115"
2019-10-07 11:01:20 +00:00
[dev-dependencies]
simple_logger = "1.6.0" # used in doc test
lazy_static = "1.4.0" # used in doc test
2019-10-07 11:01:20 +00:00
[features]
2020-06-30 21:50:56 +00:00
# Print some internal logs by log_utf8_string
2020-07-08 09:38:56 +00:00
debug = []
2020-07-13 21:36:23 +00:00
# Enable logger (this will cause log_utf8_string to appear in imports)
2020-07-13 21:36:23 +00:00
logger = []
2020-08-24 12:26:21 +00:00
2020-08-24 16:10:27 +00:00
# Indicates that this crate is used inside FCE, it allow to generate impl block for CallParameters
2020-08-24 17:40:52 +00:00
used_in_fce = []