forked from image-rs/image-tiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 886 Bytes
/
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
[package]
name = "tiff"
version = "0.4.0"
authors = [
"ccgn",
"bvssvni <bvssvni@gmail.com>",
"nwin",
"TyOverby <ty@pre-alpha.com>",
"HeroicKatora",
"Calum",
"CensoredUsername <cens.username@gmail.com>",
"Robzz",
"birktj"]
license = "MIT"
description = "TIFF decoding and encoding library in pure Rust"
repository = "https://github.com/image-rs/image-tiff"
exclude = ["tests/images/*", "tests/fuzz_images/*", "/sgx/*"]
[dependencies]
miniz_oxide = { git = "https://github.com/mesalock-linux/miniz_oxide-sgx" }
byteorder = { git = "https://github.com/mesalock-linux/byteorder-sgx" }
lzw = { git = "https://github.com/mesalock-linux/lzw-sgx" }
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[dev-dependencies]
#tempfile = "3.0"
[features]
default = ["mesalock_sgx"]
mesalock_sgx = ["sgx_tstd"]