mirror of
https://github.com/enso-org/enso.git
synced 2024-11-28 16:47:19 +03:00
36 lines
960 B
TOML
36 lines
960 B
TOML
[package]
|
|
name = "ensogl-example-render-profile"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../frp" }
|
|
enso-profiler = { path = "../../../profiler" }
|
|
enso-profiler-data = { path = "../../../profiler/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-hardcoded-theme = { path = "../../app/theme/hardcoded" }
|
|
ensogl-text = { path = "../../component/text" }
|
|
ensogl-text-msdf-sys = { path = "../../component/text/msdf-sys" }
|
|
futures = "0.3"
|
|
wasm-bindgen = { version = "0.2.58", features = [ "nightly" ] }
|
|
wasm-bindgen-futures = "0.4"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
'Headers',
|
|
'Request',
|
|
'RequestInit',
|
|
'RequestMode',
|
|
'Response',
|
|
'Window',
|
|
]
|