-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 1.17 KB
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 = "nu_plugin_dcm"
version = "0.8.0"
license = "MIT"
description = "A nushell plugin to parse Dicom files and DICOMweb records"
homepage = "https://github.com/realcundo/nu_plugin_dcm"
repository = "https://github.com/realcundo/nu_plugin_dcm"
readme = "README.md"
keywords = ["nu", "nushell", "dicom"]
include = ["src/**/*", "LICENSE", "README.md"]
# same as nushell
edition = "2024"
rust-version = "1.89.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
snafu = "0.8" # ideally should match dicom
indexmap = "2.11" # to match the version from nu
dicom = { version = "0.9.0", default-features = false }
itertools = "0.14"
nu-plugin = "0.108.0"
nu-protocol = { version = "0.108.0", features = ["plugin"] }
[dev-dependencies]
nu-plugin-test-support = "0.108.0"
nu-command = "0.108.0"
test-case = "3"
insta = { version = "1.43", default-features = false, features = ["glob", "redactions", "filters", "ron"] }
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
lto = true
opt-level = 2
codegen-units = 1