[package] name = "maze_generator" version = "2.0.0" authors = ["Finn-Thorben Sell "] edition = "2018" description = "A library of different maze generation algorithms." documentation = "https://docs.rs/maze_generator/" readme = "README.md" repository = "https://github.com/ftsell/maze_generator.git" license = "MIT" keywords = ["maze", "generator"] categories = ["algorithms", "game-development"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.7.3" rand_chacha = "0.2.2" petgraph = "0.5.1" thiserror = "1.0.30" anyhow = "1.0.56" [dev-dependencies] quickcheck = "0.9.1" clap = { version = "3.1.5", features = ["derive"] }