2020-01-29 23:30:09 +03:00
|
|
|
[package]
|
|
|
|
name = "json-rpc"
|
|
|
|
version = "0.1.0"
|
2020-11-30 14:38:35 +03:00
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2020-01-29 23:30:09 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-10 16:36:08 +03:00
|
|
|
enso-prelude = { path = "../../../../../../lib/rust/prelude", features = ["futures"]}
|
2021-11-05 18:55:55 +03:00
|
|
|
enso-shapely = { path = "../../../../../../lib/rust/shapely/impl"}
|
2020-11-30 14:38:35 +03:00
|
|
|
ensogl-system-web = { path = "../../../lib/system/web" }
|
|
|
|
futures = { version = "0.3.1" }
|
|
|
|
failure = { version = "0.1.6" }
|
|
|
|
serde = { version = "1.0.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.0" }
|
|
|
|
shrinkwraprs = { version = "0.3.0" }
|