blob: 0685249d8e9a274217d62b76286053426e6663b0 (
plain)
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
|
[package]
name = "obi"
version = "0.1.0"
authors = ["Akshay <[email protected]>"]
edition = "2018"
description = "the 1-bit image format"
homepage = "https://github.com/nerdypepper/obi"
repository = "https://github.com/nerdypepper/obi"
readme = './readme.md'
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byteorder = "1.4.2"
bitvec = "1"
sdl2 = { version = "0.34", optional = true }
png = { version = "0.16", optional = true }
[features]
default = []
convert = ["png"]
viewer = ["sdl2"]
[[bin]]
name = "obiv"
path = "src/bin/viewer.rs"
required-features = ["viewer"]
|