-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (87 loc) · 2.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "fits_web_ql"
version = "4.5.1"
authors = ["jvo203 <chris.zapart@nao.ac.jp>"]
edition = "2021"
[features]
default = ["hevc"]
jvo = []
use-intrinsics = []
hevc = []
vp9 = []
cdn = []
cuda = []
opencl = ["ocl", "rand"]
zfp = ["zfp-sys"]
ipp = ["ipp-sys"]
mem = ["jemalloc-sys"]
raid = []
[build-dependencies]
bindgen = "*"
metadeps = "*"
ispc = "*"
[package.metadata.pkg-config]
x265 = "0.0" # was 2.8 but version recognition is broken on macos right now!
vpx = "1.11.0"
[target.'cfg(target_os = "linux")'.dependencies]
thread-priority = "*"
[dependencies]
jemallocator = "*"
jemalloc-sys = { version = "*", optional = true }
actix = "0.13.5"
actix-http = "3.9.0"
actix-web = "4.9.0"
actix-web-actors = "4.3.1+deprecated"
actix-files = "0.6.6"
http = "*"
serde_json = "*"
chrono = "*"
dirs = "*"
#//cannot be used with a non-nightly stable Rust?
#half = { version = "*", features = ["use-intrinsics"] }
half = "*"
lazy_static = "*"
scan_fmt = "*"
bytes = "*"
byteorder = "*"
uuid = { version = "*", features = ["v3", "v4"] }
percent-encoding = "*"
futures = "*"
parking_lot = "*"
rusqlite = "*"
rayon = "*"
time = "*"
num-integer = "*"
num-rational = "*"
libvpx-native-sys = { version = "*", git = "https://github.com/jvo203/rust-vpx.git", features = [
"generate",
] }
num = "*"
num_cpus = "*"
serde = "*"
serde_derive = "*"
bincode = "*"
curl = "*"
timer = "*"
positioned-io = "*"
atomic = "*"
log = "*"
flexi_logger = "*"
regex = "*"
lz4-compress = "*"
postgres = "*"
tar = "*"
flate2 = "*"
bzip2 = "*"
ispc = "*"
lttb = "*"
ocl = { version = "*", optional = true }
rand = { version = "*", optional = true }
#zfp-sys = {version = "*", optional = true}#, features = ["cuda"]}
zfp-sys = { version = "*", optional = true } #, git = "https://github.com/jvo203/zfp-sys.git"}
ipp-sys = { version = "*", features = ["2019"], optional = true }
fpzip-sys = { version = "*" } #, git = "https://github.com/jvo203/fpzip-sys.git"}
#rulinalg = "*"
#linearkalman = "*"
#rav1e = { git = "https://github.com/xiph/rav1e.git", branch = "master" }
#openjpeg2-sys = "*"