29 lines
1,003 B
TOML
29 lines
1,003 B
TOML
[package]
|
|
name = "polygon-art"
|
|
version = "1.0.2"
|
|
authors = ["Ingolf Wagner <contact@ingolf-wagner.de>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
description = "Convenience library to use geo to create art."
|
|
documentation = "https://github.com/mrVanDalo/polygon-art"
|
|
homepage = "https://github.com/mrVanDalo/polygon-art"
|
|
repository = "https://github.com/mrVanDalo/polygon-art"
|
|
readme = "README.md"
|
|
keywords = ["image", "drawing", "art", "geo"]
|
|
categories = ["graphics","multimedia::images", "rendering","visualization"]
|
|
license = "GPL-3.0"
|
|
maintenance = { status = "actively-developed" }
|
|
exclude = [ "shell.nix", "default.nix", "flake.nix" ]
|
|
|
|
[dependencies]
|
|
cairo-rs = { version = "0.9", features = [ "png", "svg" ] }
|
|
geo = "0.16"
|
|
geo-clipper = "0.4.0"
|
|
geo-svg-io = "0.1.1"
|
|
geo-types = "0.6.1" # try to use the same geo-types version as often as possible
|
|
palette = "0.5"
|
|
rand = "0.8"
|
|
structopt = "0.3"
|
|
svg = "0.9"
|
|
iso8601 = "0.4"
|