mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 20:16:47 +03:00
106bb0a044
When running the profiling run-graph and flamegraph demo scenes, if a profile file is not found in the directory served over http, fall back to generating demo data.
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "ensogl-example-profiling-run-graph"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-debug-api = { path = "../../../debug-api" }
|
|
enso-frp = { path = "../../../frp" }
|
|
enso-profiler-data = { path = "../../../profiler/data" }
|
|
enso-profiler-demo-data = { path = "../../../profiler/demo-data" }
|
|
enso-profiler-enso-data = { path = "../../../../../app/gui/enso-profiler-enso-data" }
|
|
enso-profiler-flame-graph = { path = "../../../profiler/flame-graph" }
|
|
enso-web = { path = "../../../web" }
|
|
ensogl-core = { path = "../../core" }
|
|
ensogl-flame-graph = { path = "../../component/flame-graph" }
|
|
ensogl-sequence-diagram = { path = "../../component/sequence-diagram" }
|
|
ensogl-tooltip = { path = "../../component/tooltip" }
|
|
ensogl-hardcoded-theme = { path = "../../app/theme/hardcoded" }
|
|
ensogl-text = { path = "../../component/text" }
|
|
ensogl-text-msdf = { path = "../../component/text/src/font/msdf" }
|
|
futures = "0.3"
|
|
serde = "1"
|
|
wasm-bindgen = { version = "0.2.58", features = ["nightly"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
url = "2.2.2"
|
|
qstring = "0.7.2"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
'Headers',
|
|
'Request',
|
|
'RequestInit',
|
|
'RequestMode',
|
|
'Response',
|
|
'Window',
|
|
]
|
|
|
|
# Stop wasm-pack from running wasm-opt, because we run it from our build scripts in order to customize options.
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|