mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:34:22 +03:00
20 lines
512 B
TOML
20 lines
512 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" }
|
|
enso-shapely = { path = "../shapely" }
|
|
enso-web = { path = "../web" }
|
|
enso-profiler-data = { path = "../profiler/data" }
|
|
enso-profiler = { path = "../profiler" }
|
|
futures = { version = "0.3.1" }
|
|
failure = { workspace = true }
|
|
serde = { version = "1.0.0", features = ["derive"] }
|
|
serde_json = { workspace = true }
|