-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 914 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
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "h2n5"
version = "0.1.9"
edition = "2018"
rust-version = "1.56"
license = "MIT/Apache-2.0"
authors = [
"Andrew Champion <andrew.champion@gmail.com>",
"Chris Barnes <barnesc@janelia.hhmi.org>",
]
description = "HTTP 2 N5: Serve N5 datasets over HTTP as tiled image stacks"
readme = "README.md"
repository = "https://github.com/aschampion/h2n5"
keywords = ["n5"]
categories = ["command-line-utilities", "science"]
[dependencies]
actix-web = "4"
actix-cors = "0.6"
anymap = "0.12"
env_logger = "0.9"
lru-cache = "0.1.2"
n5 = "0.7"
ndarray = "0.13"
num-traits = "0.2"
regex = "1.3"
serde_json = "1.0"
structopt = "0.3"
thiserror = "1.0"
[dependencies.image]
version = "0.24"
default-features = false
features = ["jpeg", "png"]
[profile.release]
lto=true
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/h2n5-{ target }.tgz"
bin-dir = "{ bin }-{ target }{ format }"