aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3234a7f560419c0cfc4a15321b80e2da39023706 (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
[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}

[features]
default = []
viewer = ["sdl2"]

[[bin]]
name = "obiv"
path = "src/bin/viewer.rs"
required-features = ["viewer"]