Skip to content

Commit

Permalink
Bump to DICOM-rs 0.4
Browse files Browse the repository at this point in the history
- `dicom` 0.4.0
- `dicom-core` 0.4.0
- `dicom-dictionary-std` 0.4.0
- `dicom-encoding` 0.4.0
- `dicom-transfer-syntax-registry` 0.4.0
- `dicom-parser` 0.4.0
- `dicom-object` 0.4.0
- `dicom-ul` 0.3.0
- `dicom-scpproxy` 0.3.0
- `dcmdump` 0.4.0
- `dicom-dictionary-builder` 0.2.0
- `dicom-echoscu` 0.1.0
- `dicom-storescu` 0.1.0
  • Loading branch information
Enet4 committed Apr 27, 2021
1 parent 1813a58 commit 609600d
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 42 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-core"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Efficient and practical core library for DICOM compliant systems"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions dcmdump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dcmdump"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for inspecting DICOM files"
edition = "2018"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
default = ['dicom/inventory-registry', 'dicom/backtraces']

[dependencies]
dicom = { path = "../parent/", version = "0.3.0", default-features = false }
dicom = { path = "../parent/", version = "0.4.0", default-features = false }
term_size = "0.3.2"
itertools = "0.10"
snafu = "0.6.8"
Expand Down
2 changes: 1 addition & 1 deletion dictionary-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-dictionary-builder"
version = "0.1.2"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A generator of DICOM data dictionaries from standard documentation"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions dictionary-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-dictionary-std"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Standard DICOM attribute dictionary"
edition = "2018"
Expand All @@ -10,5 +10,5 @@ keywords = ["dicom", "dictionary"]
readme = "README.md"

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-core = { path = "../core", version = "0.4.0" }
lazy_static = "1.2.0"
4 changes: 2 additions & 2 deletions echoscu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ readme = "README.md"

[dependencies]
structopt = "0.3.21"
dicom-ul = { path = "../ul" }
dicom = { path = "../parent" }
dicom-ul = { path = "../ul", version = "0.3.0" }
dicom = { path = "../parent", version = "0.4.0" }
smallvec = "1.6.1"
6 changes: 3 additions & 3 deletions encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-encoding"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "DICOM encoding and decoding primitives"
edition = "2018"
Expand All @@ -15,8 +15,8 @@ default = []
inventory-registry = ['inventory']

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" }
dicom-core = { path = "../core", version = "0.4.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.4.0" }
encoding = "0.2.33"
byteordered = "0.5.0"
inventory = { version = "0.1.4", optional = true }
Expand Down
12 changes: 6 additions & 6 deletions object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-object"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -15,11 +15,11 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta
backtraces = ['snafu/backtraces']

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
dicom-parser = { path = "../parser", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.3.0" }
dicom-core = { path = "../core", version = "0.4.0" }
dicom-encoding = { path = "../encoding", version = "0.4.0" }
dicom-parser = { path = "../parser", version = "0.4.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.4.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.4.0" }
itertools = "0.10"
byteordered = "0.5.0"
smallvec = "1.6.1"
Expand Down
16 changes: 8 additions & 8 deletions parent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A pure Rust implementation of the DICOM standard"
edition = "2018"
Expand All @@ -18,10 +18,10 @@ backtraces = ['dicom-object/backtraces']
ul = ['dicom-ul']

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
dicom-parser = { path = "../parser", version = "0.3.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.3.0" }
dicom-object = { path = "../object", version = "0.3.0", default-features = false }
dicom-ul = { optional = true, path = "../ul", version = "0.2.0" }
dicom-core = { path = "../core", version = "0.4.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.4.0" }
dicom-encoding = { path = "../encoding", version = "0.4.0" }
dicom-parser = { path = "../parser", version = "0.4.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.4.0" }
dicom-object = { path = "../object", version = "0.4.0", default-features = false }
dicom-ul = { optional = true, path = "../ul", version = "0.3.0" }
8 changes: 4 additions & 4 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-parser"
version = "0.3.1"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A middle-level parser and printer of DICOM data sets"
edition = "2018"
Expand All @@ -11,9 +11,9 @@ keywords = ["dicom", "parser"]
readme = "README.md"

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
dicom-core = { path = "../core", version = "0.4.0" }
dicom-encoding = { path = "../encoding", version = "0.4.0" }
chrono = "0.4.6"
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.4.0" }
smallvec = "1.6.1"
snafu = "0.6.8"
6 changes: 3 additions & 3 deletions scpproxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-scpproxy"
version = "0.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "A proxy SCP server, for logging and diagnostics"
edition = "2018"
Expand All @@ -12,6 +12,6 @@ readme = "README.md"

[dependencies]
clap = "2.33.0"
dicom-ul = { path = "../ul/", version = "0.2.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" }
dicom-ul = { path = "../ul/", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.4.0" }
snafu = "0.6.8"
6 changes: 2 additions & 4 deletions storescu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ categories = ["command-line-utilities"]
keywords = ["dicom"]
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dicom-ul = { path = '../ul' }
dicom = { path = '../parent' }
dicom-ul = { path = '../ul', version = "0.3.0" }
dicom = { path = '../parent', version = "0.4.0" }
structopt = "0.3.21"
6 changes: 3 additions & 3 deletions transfer-syntax-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-transfer-syntax-registry"
version = "0.3.0"
version = "0.4.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A registry of DICOM transfer syntaxes"
edition = "2018"
Expand All @@ -14,8 +14,8 @@ default = []
inventory-registry = ['dicom-encoding/inventory-registry', 'inventory']

[dependencies]
dicom-core = { path = "../core", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
dicom-core = { path = "../core", version = "0.4.0" }
dicom-encoding = { path = "../encoding", version = "0.4.0" }
lazy_static = "1.2.0"
encoding = "0.2.33"
byteordered = "0.5.0"
Expand Down
6 changes: 3 additions & 3 deletions ul/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-ul"
version = "0.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "Types and methods for interacting with the DICOM Upper Layer Protocol"
edition = "2018"
Expand All @@ -12,9 +12,9 @@ readme = "README.md"

[dependencies]
byteordered = "0.5.0"
dicom-encoding = { path = "../encoding/", version = "0.3.0" }
dicom-encoding = { path = "../encoding/", version = "0.4.0" }
snafu = "0.6.8"
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.4.0" }

[dev-dependencies]
matches = "0.1.8"

0 comments on commit 609600d

Please sign in to comment.