[package]
edition = "2021"
rust-version = "1.89"
name = "ezu-core"
version = "0.9.0"
authors = ["Eukarya Inc."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types for ezu: tile/world coordinates, deterministic seeding"
homepage = "https://github.com/reearth/ezu"
readme = "README.md"
keywords = [
"map",
"cartography",
"tile",
"ezu",
"rendering",
]
categories = [
"graphics",
"rendering",
"science::geo",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/reearth/ezu"
[features]
text = [
"dep:ttf-parser",
"dep:rustybuzz",
"dep:unicode-bidi",
"dep:unicode-script",
"dep:tiny-skia",
"dep:thiserror",
"dep:tracing",
"dep:lru",
]
[lib]
name = "ezu_core"
path = "src/lib.rs"
[[test]]
name = "text"
path = "tests/text.rs"
[[test]]
name = "text_rtl"
path = "tests/text_rtl.rs"
[[test]]
name = "text_sdf"
path = "tests/text_sdf.rs"
[dependencies.lru]
version = "0.12"
optional = true
[dependencies.rustybuzz]
version = "0.20"
optional = true
[dependencies.thiserror]
version = "2"
optional = true
[dependencies.tiny-skia]
version = "0.12"
optional = true
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.ttf-parser]
version = "0.25"
optional = true
[dependencies.unicode-bidi]
version = "0.3"
optional = true
[dependencies.unicode-script]
version = "0.5"
optional = true
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]