forked from image-rs/image-png
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.02 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
[package]
name = "png"
version = "0.15.2"
license = "MIT OR Apache-2.0"
description = "PNG decoding and encoding library in pure Rust"
categories = ["multimedia::images"]
authors = ["nwin <nwin@users.noreply.github.com>"]
repository = "https://github.com/image-rs/image-png.git"
edition = "2018"
exclude = [
"tests/*",
"/sgx/*",
]
[dependencies]
inflate = { git = "https://github.com/mesalock-linux/inflate-sgx" }
deflate = { git = "https://github.com/mesalock-linux/deflate-rs-sgx", branch = "dev", optional = true }
bitflags = "1.0"
crc32fast = { git = "https://github.com/mesalock-linux/rust-crc32fast-sgx" }
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[dev-dependencies]
#getopts = "0.2.14"
#term = "0.6.1"
#glob = "0.3"
#rand = "0.7.0"
#[dev-dependencies.glium]
#version = "0.24"
#features = ["glutin"]
#default-features = false
[features]
png-encoding = ["deflate"]
default = ["png-encoding", "mesalock_sgx"]
unstable = []
benchmarks = []
mesalock_sgx = ["sgx_tstd"]