1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "rustybuzz"
version = "0.18.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
exclude = [
"benches/",
"tests/",
]
description = "A complete harfbuzz shaping algorithm port to Rust."
documentation = "https://docs.rs/rustybuzz/"
readme = "README.md"
keywords = [
"text",
"shaping",
"opentype",
"truetype",
]
categories = ["text-processing"]
license = "MIT"
repository = "https://github.com/RazrFalcon/rustybuzz"
[dependencies.bitflags]
version = "2.4.1"
[dependencies.bytemuck]
version = "1.5"
features = ["extern_crate_alloc"]
[dependencies.core_maths]
version = "0.1.0"
[dependencies.log]
version = "0.4.22"
[dependencies.smallvec]
version = "1.6"
[dependencies.ttf-parser]
version = "0.25"
features = [
"opentype-layout",
"apple-layout",
"variable-fonts",
"glyph-names",
"no-std-float",
]
default-features = false
[dependencies.unicode-bidi-mirroring]
version = "0.4"
[dependencies.unicode-ccc]
version = "0.4"
[dependencies.unicode-properties]
version = "0.1.0"
features = ["general-category"]
default-features = false
[dependencies.unicode-script]
version = "0.5.2"
#[dependencies.wasmi]
#version = "0.36.0"
#optional = true
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.pico-args]
version = "0.5"
features = ["eq-separator"]
[features]
default = ["std"]
std = ["ttf-parser/std"]
#wasm-shaper = [
# "std",
# "dep:wasmi",
#]
|