# 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" name = "space-filling" version = "0.4.0" authors = ["Frederica Bernkastel "] exclude = [ "LICENCE", "doc/*", "src/legacy/*", ] description = "Generalized 2D space filling" documentation = "https://docs.rs/space-filling/" readme = "readme.md" keywords = ["generative-art"] categories = ["science"] license = "GPL-3.0" repository = "https://github.com/FredericaBernkastel/space-filling" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "doc", ] [profile.release] [lib] name = "space_filling" path = "src/lib.rs" [[example]] name = "01_fractal_distribution" path = "examples/argmax2d/01_fractal_distribution.rs" required-features = ["drawing"] [[example]] name = "02_random_distribution" path = "examples/gd_adf/02_random_distribution.rs" required-features = ["drawing"] [[example]] name = "03_embedded" path = "examples/argmax2d/03_embedded.rs" required-features = ["drawing"] [[example]] name = "04_polymorphic" path = "examples/gd_adf/04_polymorphic.rs" required-features = ["drawing"] [[example]] name = "05_image_dataset" path = "examples/argmax2d/05_image_dataset.rs" required-features = ["drawing"] [[example]] name = "06_custom_primitive" path = "examples/gd_adf/06_custom_primitive.rs" required-features = ["drawing"] [dependencies.anyhow] version = "1.0" [dependencies.euclid] version = "0.22" [dependencies.humansize] version = "1.1" [dependencies.image] version = "0.24" features = [ "png", "jpeg", ] optional = true default_features = false [dependencies.itertools] version = "0.10" [dependencies.num-traits] version = "0.2" [dependencies.rand] version = "0.8" default-features = false [dependencies.rand_pcg] version = "0.3" [dependencies.rayon] version = "1.5" [dev-dependencies.lexical-sort] version = "0.3" [dev-dependencies.num-complex] version = "0.4" [dev-dependencies.open] version = "1.4" [dev-dependencies.regex] version = "1.4" [dev-dependencies.walkdir] version = "2.3" [features] default = [] drawing = ["image"]