marine/fluence-faas/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

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