2020-06-15 17:22:18 +03:00
|
|
|
[package]
|
|
|
|
name = "fluence-faas"
|
2020-08-09 01:49:51 +03:00
|
|
|
description = "Fluence FaaS"
|
2021-08-05 21:17:26 +03:00
|
|
|
version = "0.9.0"
|
2020-06-15 17:22:18 +03:00
|
|
|
authors = ["Fluence Labs"]
|
2020-08-09 01:49:51 +03:00
|
|
|
license = "Apache-2.0"
|
2020-06-15 17:22:18 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-05 21:17:26 +03:00
|
|
|
marine-runtime = { path = "../runtime", version = "0.7.0" }
|
2021-06-17 14:06:01 +03:00
|
|
|
marine-module-interface = { path = "../crates/module-interface", version = "0.1.4" }
|
2021-05-10 12:51:22 +03:00
|
|
|
marine-utils = { path = "../crates/utils", version = "0.2.0" }
|
2021-06-16 09:37:45 +03:00
|
|
|
marine-rs-sdk-main = { version = "0.6.10", features = ["logger"] }
|
|
|
|
marine-rs-sdk = { version = "0.6.10", features = ["logger"] }
|
2020-06-15 17:22:18 +03:00
|
|
|
|
2021-08-05 21:17:26 +03:00
|
|
|
wasmer-runtime = { package = "wasmer-runtime-fl", version = "=0.17.1" }
|
2020-06-16 10:41:34 +03:00
|
|
|
# dynamicfunc-fat-closures allows using state inside DynamicFunc
|
2021-08-05 21:17:26 +03:00
|
|
|
wasmer-core = { package = "wasmer-runtime-core-fl", version = "=0.17.1", features = ["dynamicfunc-fat-closures"] }
|
2020-12-04 08:29:43 +03:00
|
|
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1" }
|
2021-09-03 20:10:44 +03:00
|
|
|
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.20.2" }
|
2020-06-15 17:22:18 +03:00
|
|
|
|
|
|
|
toml = "0.5.6"
|
2021-01-12 12:14:33 +03:00
|
|
|
serde = { version = "=1.0.118", features = ["derive"] }
|
2020-06-15 17:22:18 +03:00
|
|
|
serde_json = "1.0.53"
|
2021-01-12 12:14:33 +03:00
|
|
|
serde_derive = "=1.0.118"
|
2020-09-16 01:14:15 +03:00
|
|
|
itertools = "0.9.0"
|
2020-06-15 17:22:18 +03:00
|
|
|
cmd_lib = "0.7.8"
|
2020-06-17 13:42:11 +03:00
|
|
|
log = "0.4.8"
|
2020-08-25 19:26:21 +03:00
|
|
|
safe-transmute = "0.11.0"
|
2021-02-12 13:44:52 +03:00
|
|
|
thiserror = "1.0.23"
|
2020-08-07 23:24:28 +03:00
|
|
|
|
2020-08-24 01:47:04 +03:00
|
|
|
[dev-dependencies]
|
2020-09-16 01:14:15 +03:00
|
|
|
once_cell = "1.4.0"
|
|
|
|
env_logger = "0.7.1"
|
2021-05-11 15:44:11 +03:00
|
|
|
pretty_assertions = "0.7.2"
|
2020-08-24 01:47:04 +03:00
|
|
|
|
2020-08-07 23:24:28 +03:00
|
|
|
[features]
|
|
|
|
raw-module-api = []
|