enso/lib/rust/json-rpc/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
512 B
TOML
Raw Normal View History

[package]
name = "json-rpc"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
2021-12-01 18:06:57 +03:00
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
enso-prelude = { path = "../prelude" }
2022-05-23 05:16:04 +03:00
enso-shapely = { path = "../shapely" }
enso-web = { path = "../web" }
2022-05-23 05:16:04 +03:00
enso-profiler-data = { path = "../profiler/data" }
enso-profiler = { path = "../profiler" }
futures = { version = "0.3.1" }
2023-01-28 01:39:37 +03:00
failure = { workspace = true }
serde = { version = "1.0.0", features = ["derive"] }
2023-01-28 01:39:37 +03:00
serde_json = { workspace = true }