enso/app/gui/controller/double-representation/Cargo.toml

27 lines
863 B
TOML
Raw Normal View History

[package]
name = "double-representation"
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]
2023-01-28 01:39:37 +03:00
ast = { path = "../../language/ast/impl" }
parser = { path = "../../language/parser" }
2023-01-28 01:39:37 +03:00
engine-protocol = { path = "../engine-protocol" }
enso-data-structures = { path = "../../../../lib/rust/data-structures" }
2022-05-23 05:16:04 +03:00
enso-prelude = { path = "../../../../lib/rust/prelude" }
Profiling workflows (#3475) Define some workflows for batch-mode profiling. Implemented: - collapse nodes - create node - enter collapsed node - new project - open visualization They can currently be built and run with a command like: `./run.sh ide build --profiling-level=debug && dist/ide/linux-unpacked/enso --entry-point profile --workflow create_node --save-profile out.json` And the data can be displayed with: `dist/ide/linux-unpacked/enso --entry-point profiling_run_graph --load-profile out.json` Demo of recording and viewing a profile with a command-line one-liner: https://user-images.githubusercontent.com/1047859/169954795-2d9520ca-84f9-45d2-b83a-5063ebe6f718.mp4 See: https://www.pivotaltracker.com/story/show/182195399. # Important Notes - When defining workflows, two helpers are enough to allow us to tell when the action is really done: `Fixture::compile_new_shaders`, and `Fixture::backend_execution`. Often, it is appropriate to await both, but it depends on the task. - The shader compiler is now driven by a `Controller`; while the `Compiler` is reset if context is lost, the `Controller`'s state survives context loss. - A new `--load-profile` option supports specifying a profile by path when running `profiling_run_graph`. - Drop the `with_same_start` profiler interface; we ended up preferring a child profiler convention, and this interface was not implemented compatibly with the stricter data model we've had since the introduction of `profiler::data`. - Fix the noisy `rustfmt` output.
2022-06-01 21:01:16 +03:00
enso-profiler = { path = "../../../../lib/rust/profiler" }
enso-text = { path = "../../../../lib/rust/text" }
2023-01-28 01:39:37 +03:00
const_format = { workspace = true }
failure = { workspace = true }
itertools = { workspace = true }
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
[dev-dependencies]
2023-01-27 03:09:09 +03:00
regex = { workspace = true }
wasm-bindgen-test = { workspace = true }