aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 0f8e5f1094262d6007694695c20f4d7cc2c9ba57 (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    = "0.21.0"
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"]