66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
# 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 = "zeno"
|
|
version = "0.3.3"
|
|
authors = ["Chad Brokaw <cbrokaw@gmail.com>"]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "High performance, low level 2D path rasterization."
|
|
homepage = "https://github.com/dfrg/zeno"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"path",
|
|
"rasterizer",
|
|
"svg",
|
|
]
|
|
categories = ["graphics"]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/dfrg/zeno"
|
|
|
|
[features]
|
|
default = [
|
|
"eval",
|
|
"std",
|
|
]
|
|
eval = []
|
|
libm = ["dep:libm"]
|
|
std = []
|
|
|
|
[lib]
|
|
name = "zeno"
|
|
path = "src/lib.rs"
|
|
|
|
[[bench]]
|
|
name = "render"
|
|
path = "benches/render.rs"
|
|
harness = false
|
|
|
|
[dependencies.libm]
|
|
version = "0.2.7"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.5.1"
|
|
features = ["cargo_bench_support"]
|
|
default-features = false
|
|
|
|
[dev-dependencies.fastrand]
|
|
version = "2.0.1"
|
|
default-features = false
|