1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00
wezterm/deps/cairo/Cargo.toml
Wez Furlong d7ede9fb04
cairo: fix unexpected cfg condition value
This crate references features that were not defined in Cargo.toml.
Add those features, even though we don't use them, so that we are
not warned to death and don't drown in the noise.
2024-09-14 06:53:27 -07:00

36 lines
620 B
TOML

[package]
name = "cairo-sys-rs"
license = "MIT"
authors = ["The gtk-rs Project Developers"]
homepage = "https://gtk-rs.org/"
description = "FFI bindings to libcairo"
version = "0.18.0"
keywords = ["cairo", "ffi", "gtk-rs", "gnome"]
repository = "https://github.com/gtk-rs/gtk-rs-core"
build = "build.rs"
edition = "2021"
rust-version = "1.70"
[lib]
name = "cairo_sys"
[features]
v1_16 = []
v1_18 = ["v1_16"]
png = []
pdf = []
svg = []
ps = []
script = []
win32-surface = []
xlib = []
xcb = []
freetype = []
use_glib = []
[dependencies]
libc = "0.2"
[build-dependencies]
cc = {version="1.0", features = ["parallel"]}