rust-workshop => backend-rust

This commit is contained in:
folex
2019-08-16 16:49:07 +03:00
parent b85eea0963
commit 92af937fc7
31 changed files with 30 additions and 324 deletions

View File

@ -0,0 +1,24 @@
[package]
name = "fluid"
version = "0.1.0"
authors = ["Fluence Labs"]
publish = false
description = "Decentralized feed built on Fluence"
edition = "2018"
[lib]
name = "fluid"
path = "src/lib.rs"
crate-type = ["cdylib"]
[profile.release]
debug = false
lto = true
opt-level = "z"
panic = "abort"
[dependencies]
serde = { version = "=1.0.88", features = ["derive"] }
serde_json = { version = "=1.0.38", features = ["raw_value"] }
log = "0.4"
fluence = { version = "0.1.6", features = ["wasm_logger"] }