# 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 = "gpca" version = "0.2.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Rust implementation of the 'Async Hyper-Graph Cellular Automata' computational model." readme = "README.md" license = "MIT" [lib] name = "gpca" path = "src/lib.rs" [[example]] name = "basic" path = "examples/basic.rs" required-features = ["fdg"] [[example]] name = "latest" path = "examples/latest.rs" required-features = ["full"] [[example]] name = "visualization" path = "examples/visualization.rs" required-features = ["fdg"] [dependencies.bytemuck] version = "1.19.0" [dependencies.egui-macroquad] version = "0.15.0" optional = true [dependencies.fdg-sim] version = "0.9.1" optional = true [dependencies.image] version = "0.25.4" [dependencies.itertools] version = "0.13.0" [dependencies.macroquad] version = "0.4.13" optional = true [dependencies.rand] version = "0.8.5" optional = true [dependencies.rayon] version = "1.10.0" [dependencies.tokio] version = "1.41.0" features = ["full"] optional = true [dependencies.wgpu] version = "22.1.0" [features] fdg = [ "dep:macroquad", "dep:egui-macroquad", "dep:fdg-sim", ] full = [ "dep:rand", "dep:tokio", ]