-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (44 loc) · 1.12 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
[package]
name = "orthanc-cli"
description = "Command-line interface for Orthanc, an open-source, lightweight DICOM server"
version = "0.4.0"
authors = ["Andrii Yurchuk <[email protected]>"]
edition = "2018"
repository = "https://github.com/Ch00k/orthanc-cli"
homepage = "https://github.com/Ch00k/orthanc-cli"
documentation = "https://github.com/Ch00k/orthanc-cli"
keywords = ["cli", "command-line", "orthanc", "dicom"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "Unlicense"
autotests = false
build = "build.rs"
[dependencies]
clap = "3.0.0-beta.2"
comfy-table = "6.1.0"
orthanc = "0.8"
serde_json = "1.0"
serde_yaml = "0.8"
[dev-dependencies]
chrono = "0.4"
dicom-object = "0.4"
maplit = "1.0"
pretty_assertions = "1.2"
regex = "1.4"
tempfile = "3.3"
zip = "0.6"
# https://github.com/colin-kiegel/rust-pretty-assertions/issues/19#issuecomment-657672143
[profile.dev.package.diff]
opt-level = 3
[build-dependencies]
clap = "3.0.0-beta.2"
clap_generate = "3.0.0-beta.2"
[[bin]]
name = "orthanc"
path = "src/main.rs"
[lib]
name = "orthanc_cli"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/test.rs"