mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
59 lines
1.5 KiB
TOML
59 lines
1.5 KiB
TOML
[package]
|
|
name = "wezterm-font"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
vendor-jetbrains = []
|
|
vendor-roboto = []
|
|
vendor-noto-emoji = []
|
|
vendor-nerd-font-symbols = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
cairo-rs = {version="0.18", default-features=false}
|
|
config = { path = "../config" }
|
|
encoding_rs = "0.8"
|
|
enum-display-derive = "0.1"
|
|
euclid = "0.22"
|
|
finl_unicode = "1.2"
|
|
freetype = { path = "../deps/freetype" }
|
|
harfbuzz = { path = "../deps/harfbuzz" }
|
|
image = "0.25"
|
|
lazy_static = "1.4"
|
|
lfucache = { path = "../lfucache" }
|
|
log = "0.4"
|
|
memmap2 = "0.9"
|
|
metrics = "0.23"
|
|
ordered-float = "4.1"
|
|
rangeset = { path = "../rangeset" }
|
|
termwiz = { path = "../termwiz" }
|
|
thiserror = "1.0"
|
|
walkdir = "2"
|
|
wezterm-color-types = { path = "../color-types" }
|
|
wezterm-input-types = { path = "../wezterm-input-types" }
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
|
wezterm-toast-notification = { path = "../wezterm-toast-notification" }
|
|
wezterm-bidi = { path = "../bidi" }
|
|
|
|
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
|
|
fontconfig = { path = "../deps/fontconfig" }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
dwrote = "0.11"
|
|
winapi = "0.3"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = "0.25"
|
|
core-foundation = "0.9"
|
|
core-text = "20.0"
|
|
objc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
k9 = "0.12.0"
|
|
env_logger = "0.11"
|