-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (32 loc) · 1002 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
[package]
name = "clipline"
version = "0.3.0"
authors = ["Nurzhan Sakén <[email protected]>"]
description = "Efficient rasterization of line segments with pixel-perfect clipping."
keywords = ["line", "clipping", "bresenham", "rasterization", "grid"]
categories = ["graphics", "rendering", "algorithms", "game-development"]
repository = "https://github.com/nxsaken/clipline/"
license = "MIT OR Apache-2.0"
readme = "README.md"
rust-version = "1.66.0"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
]
[features]
default = []
# Enable Octant<i64/u64> for all targets
# and Octant<isize/usize> for 64-bit targets.
octant_64 = []
# Enable unstable features.
nightly = []
# Enable optimized `try_fold` implementations.
# Requires the unstable `try_trait_v2` feature.
try_fold = ["nightly"]
# Enable optimized `is_empty` implementations.
# Requires the unstable `exact_size_is_empty` feature.
is_empty = ["nightly"]
[dev-dependencies]
static_assertions = "1.1.0"
proptest = "1.5.0"