# 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" rust-version = "1.66.0" name = "clipline" version = "0.3.0" authors = ["Nurzhan Sakén "] build = false include = [ "**/*.rs", "Cargo.toml", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Efficient rasterization of line segments with pixel-perfect clipping." readme = "README.md" keywords = [ "line", "clipping", "bresenham", "rasterization", "grid", ] categories = [ "graphics", "rendering", "algorithms", "game-development", ] license = "MIT OR Apache-2.0" repository = "https://github.com/nxsaken/clipline/" [lib] name = "clipline" path = "src/lib.rs" [[test]] name = "axis_aligned" path = "tests/axis_aligned.rs" [[test]] name = "diagonal" path = "tests/diagonal.rs" [[test]] name = "octant" path = "tests/octant.rs" [dev-dependencies.proptest] version = "1.5.0" [dev-dependencies.static_assertions] version = "1.1.0" [features] default = [] is_empty = ["nightly"] nightly = [] octant_64 = [] try_fold = ["nightly"]