[package]
edition = "2021"
rust-version = "1.70"
name = "agg-rust"
version = "1.0.2"
build = false
exclude = [
"demo/",
"docs/",
"tests/",
".github/",
".claude/",
"benches/",
"scripts/",
"cpp-references/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust port of Anti-Grain Geometry (AGG) 2.6 - high quality 2D vector graphics rendering"
homepage = "https://larsbrubaker.github.io/agg-rust/"
documentation = "https://docs.rs/agg-rust"
readme = "README.md"
keywords = [
"graphics",
"rendering",
"anti-aliasing",
"2d",
"vector",
]
categories = [
"graphics",
"rendering",
]
license = "BSD-3-Clause"
repository = "https://github.com/larsbrubaker/agg-rust"
[features]
default = []
font = ["ttf-parser"]
[lib]
name = "agg_rust"
path = "src/lib.rs"
[dependencies.ttf-parser]
version = "0.25"
optional = true
[dev-dependencies.criterion]
version = "0.5"