mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:38:11 +03:00
20 lines
520 B
TOML
20 lines
520 B
TOML
[package]
|
|
name = "json-rpc"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-prelude = { path = "../prelude", features = ["futures"]}
|
|
enso-shapely = { path = "../shapely"}
|
|
enso-web = { path = "../web" }
|
|
enso-profiler = {path = "../profiler"}
|
|
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" }
|