32 lines
724 B
TOML
32 lines
724 B
TOML
[package]
|
|
name = "plotters-svg"
|
|
version = "0.3.3"
|
|
authors = ["Hao Hou <haohou302@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
description = "Plotters SVG backend"
|
|
homepage = "https://plotters-rs.github.io"
|
|
repository = "https://github.com/plotters-rs/plotters.git"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies.plotters-backend]
|
|
#path = "../plotters-backend"
|
|
version = "0.3"
|
|
|
|
[dependencies.image]
|
|
version = "0.24.2"
|
|
optional = true
|
|
default-features = false
|
|
features = ["jpeg", "png", "bmp"]
|
|
|
|
[features]
|
|
debug = []
|
|
bitmap_encoder = ["image"]
|
|
|
|
[dev-dependencies.plotters]
|
|
default_features = false
|
|
features = ["ttf"]
|
|
path = "../plotters"
|