mirror of
https://github.com/enso-org/enso.git
synced 2025-01-06 11:07:23 +03:00
e6133444ce
* Extends the instrumentation of the code base and upgrades some FRPs to the newer API macro. * Extends the run-graph demo scene to specify a profile via URL without recompilation. * Fixes labels in the flame graph demo scene. * Fixes an issue with loading profiles that contains escaped characters. # Important Notes [ci no changelog needed]
25 lines
836 B
TOML
25 lines
836 B
TOML
[package]
|
|
name = "ast"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
derive_more = { version = "0.99.16" }
|
|
failure = { version = "0.1.5" }
|
|
lazy_static = { version = "1.4.0" }
|
|
regex = { version = "1" }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = { version = "1.0" }
|
|
shrinkwraprs = { version = "0.2.1" }
|
|
uuid = { version = "0.8.1", features = ["serde", "v4", "wasm-bindgen"] }
|
|
ast-macros = { path = "../macros" }
|
|
enso-data-structures = { path = "../../../../../lib/rust/data-structures" }
|
|
enso-text = { path = "../../../../../lib/rust/text" }
|
|
enso-prelude = { path = "../../../../../lib/rust/prelude" }
|
|
enso-shapely = { path = "../../../../../lib/rust/shapely" }
|
|
enso-profiler = { path = "../../../../../lib/rust/profiler" }
|