# 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 = "pixeldike" version = "0.1.0" authors = ["Finn-Thorben Sell "] description = "pixel drawing game for programmers inspired by reddits r/place" documentation = "https://docs.rs/pixeldike" readme = "README.md" keywords = ["pixelflut"] categories = [ "command-line-utilities", "games", "parser-implementations", ] license = "MIT" repository = "https://github.com/ftsell/pixeldike.git" [profile.release] lto = "fat" codegen-units = 1 [lib] path = "src/lib.rs" [[bin]] name = "pixeldike" path = "src/main.rs" required-features = ["cli"] [dependencies.anyhow] version = "1.0.68" [dependencies.async-trait] version = "0.1.73" [dependencies.bytes] version = "1.3.0" [dependencies.clap] version = "4.0.30" features = ["derive"] optional = true [dependencies.framebuffer] version = "0.3.1" [dependencies.futures-util] version = "0.3.25" optional = true [dependencies.image] version = "0.25.0" optional = true [dependencies.itertools] version = "0.12.0" [dependencies.minifb] version = "0.25.0" optional = true [dependencies.rand] version = "0.8.5" optional = true [dependencies.thiserror] version = "1.0.38" [dependencies.tokio] version = "1.35.0" features = [ "full", "tracing", ] [dependencies.tokio-tungstenite] version = "0.21.0" optional = true [dependencies.tracing] version = "0.1.37" features = ["release_max_level_debug"] [dependencies.tracing-subscriber] version = "0.3.17" optional = true [dev-dependencies.quickcheck] version = "1.0.3" [dev-dependencies.tempfile] version = "3.3.0" [features] cli = [ "tcp", "dep:clap", "dep:rand", "dep:tracing-subscriber", "dep:image", ] default = [ "cli", "tcp", "udp", ] tcp = [] udp = [] windowing = ["dep:minifb"] ws = [ "dep:tokio-tungstenite", "dep:futures-util", ]