mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:01:38 +03:00
965d1ff28b
This PR brings wasm-bindgen (and related crates) to the latest version. I've also removed patching code, so future updates should be much easier.
32 lines
904 B
TOML
32 lines
904 B
TOML
[package]
|
|
name = "ensogl-text"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../frp" }
|
|
enso-prelude = { path = "../../../prelude" }
|
|
enso-shapely = { path = "../../../shapely" }
|
|
enso-text = { path = "../../../text" }
|
|
enso-types = { path = "../../../types" }
|
|
ensogl-core = { path = "../../core" }
|
|
ensogl-text-embedded-fonts = { path = "src/font/embedded" }
|
|
ensogl-text-msdf = { path = "src/font/msdf" }
|
|
const_format = "0.2.22"
|
|
xi-rope = { version = "0.3.0" }
|
|
owned_ttf_parser = "0.15.1"
|
|
bincode = "2.0.0-rc.1"
|
|
serde = { version = "1", features = ["rc"] }
|
|
ordered-float = "3.0.0"
|
|
ensogl-text-font-family = { path = "src/font/family" }
|
|
rustybuzz = "0.5.1"
|
|
|
|
[dev-dependencies]
|
|
rand = { version = "0.8.5", default-features = false }
|
|
rand_chacha = "0.3.1"
|
|
wasm-bindgen-test = { workspace = true }
|