2020-07-03 09:54:16 +03:00
|
|
|
[package]
|
2020-11-30 14:38:35 +03:00
|
|
|
name = "ensogl-text"
|
2020-07-03 09:54:16 +03:00
|
|
|
version = "0.1.0"
|
2020-11-30 14:38:35 +03:00
|
|
|
authors = ["Enso Team <contact@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2020-07-03 09:54:16 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["rlib", "cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-12 15:56:23 +03:00
|
|
|
enso-frp = { path = "../../../frp" }
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-prelude = { path = "../../../prelude" }
|
|
|
|
enso-shapely = { path = "../../../shapely" }
|
2021-11-25 13:45:42 +03:00
|
|
|
enso-text = { path = "../../../text" }
|
2021-11-12 15:56:23 +03:00
|
|
|
enso-types = { path = "../../../types" }
|
|
|
|
ensogl-core = { path = "../../core" }
|
2022-08-27 01:25:34 +03:00
|
|
|
ensogl-text-embedded-fonts = { path = "src/font/embedded" }
|
|
|
|
ensogl-text-msdf = { path = "src/font/msdf" }
|
2022-04-12 20:39:08 +03:00
|
|
|
const_format = "0.2.22"
|
2020-11-30 14:38:35 +03:00
|
|
|
xi-rope = { version = "0.3.0" }
|
2022-08-27 01:25:34 +03:00
|
|
|
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" }
|
2022-10-04 05:51:27 +03:00
|
|
|
rustybuzz = "0.5.1"
|
2020-07-03 09:54:16 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-30 15:36:28 +03:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
|
|
|
rand_chacha = "0.3.1"
|
2020-07-03 09:54:16 +03:00
|
|
|
wasm-bindgen-test = { version = "0.3.8" }
|