-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "binary_image"
version = "0.6.1"
edition = "2021"
description = "A library for handling binary images"
authors = ["salam99823"]
keywords = ["image", "bit", "bitmap"]
homepage = "https://github.com/salam99823/binary_image"
repository = "https://github.com/salam99823/binary_image"
readme = "README.md"
license = "MIT OR Apache-2.0"
exclude = ["assets/*", ".github/*", "examples/*"]
include = ["/LICENSE-APACHE", "/LICENSE-MIT", "/README.md", "/src/"]
[lints.clippy]
pedantic = { level = "warn", priority = 0 }
[features]
default = []
bevy = ["dep:bevy_image", "dep:bevy_render"]
[dependencies]
image = { version = "0.25", default-features = false }
derive_more = { version = "1", features = ["full"] }
num-traits = "0.2"
bitflags = "2.6"
bit-vec = { version = "0.8" }
[dependencies.bevy_image]
version = "0.15"
default-features = false
optional = true
[dependencies.bevy_render]
version = "0.15"
default-features = false
optional = true
[dev-dependencies.bevy_image]
version = "0.15"
default-features = false
features = ["png"]