File: Cargo.toml.orig

package info (click to toggle)
rust-lyon-geom 1.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 372 kB
  • sloc: makefile: 4
file content (25 lines) | stat: -rw-r--r-- 861 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "lyon_geom"
version = "1.0.5"
description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid."
authors = ["Nicolas Silva <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
documentation = "https://docs.rs/lyon_geom/"
keywords = ["2d", "graphics", "bezier", "geometry"]
license = "MIT OR Apache-2.0"
workspace = "../.."
edition = "2018"

[lib]
name = "lyon_geom"

[features]
default = ["std"]
serialization = ["serde", "euclid/serde"]
std = ["arrayvec/std", "euclid/std", "num-traits/std"]

[dependencies]
euclid = { version = "0.22.4", default-features = false }
arrayvec = { version = "0.7", default-features = false }
num-traits = { version = "0.2", features = ["libm"], default-features = false }
serde = { version = "1.0", optional = true, features = ["serde_derive"], default-features = false }