-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- `dicom-core`: 0.2.0 - `dicom-encoding`: 0.2.0 - `dicom-transfer-syntax-registry`: 0.2.0 - `dicom-parser`: 0.2.0 - `dicom-object`: 0.2.0 - `dicom-dictionary-std`: 0.2.0 - `dcmdump`: 0.2.0 - `dicom-dictionary-builder`: 0.1.1 - `dicom-ul`: 0.1.0 - `dicom-scpproxy`: 0.1.0
- Loading branch information
Showing
11 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-core" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "Efficient and practical core library for DICOM compliant systems" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dcmdump" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "A CLI tool for inspecting DICOM files" | ||
edition = "2018" | ||
|
@@ -13,4 +13,4 @@ keywords = ["cli", "dicom", "dump"] | |
default = ['dicom/inventory-registry'] | ||
|
||
[dependencies] | ||
dicom = { path = "../parent/", version = "0.1.0", default-features = false } | ||
dicom = { path = "../parent/", version = "0.2.0", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-dictionary-builder" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "A generator of DICOM data dictionaries from standard documentation" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-dictionary-std" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "Standard DICOM attribute dictionary" | ||
edition = "2018" | ||
|
@@ -9,5 +9,5 @@ repository = "https://github.com/Enet4/dicom-rs" | |
keywords = ["dicom", "dictionary"] | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
lazy_static = "1.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-encoding" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "DICOM encoding and decoding primitives" | ||
edition = "2018" | ||
|
@@ -14,8 +14,8 @@ default = [] | |
inventory-registry = ['inventory'] | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.1.0" } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } | ||
quick-error = "1.2.3" | ||
encoding = "0.2.33" | ||
byteordered = "0.5.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-object" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -13,11 +13,11 @@ default = [] | |
inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-syntax-registry/inventory-registry'] | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.1.0" } | ||
dicom-parser = { path = "../parser", version = "0.1.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.1.0" } | ||
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.1.0" } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.2.0" } | ||
dicom-parser = { path = "../parser", version = "0.2.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } | ||
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.2.0" } | ||
itertools = "0.8.0" | ||
byteordered = "0.5.0" | ||
smallvec = "1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "A pure Rust implementation of the DICOM standard" | ||
edition = "2018" | ||
|
@@ -17,9 +17,9 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta | |
repository = "Enet4/dicom-rs" | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.1.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.1.0" } | ||
dicom-parser = { path = "../parser", version = "0.1.0" } | ||
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.1.0" } | ||
dicom-object = { path = "../object", version = "0.1.0", default-features = false } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.2.0" } | ||
dicom-parser = { path = "../parser", version = "0.2.0" } | ||
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.2.0" } | ||
dicom-object = { path = "../object", version = "0.2.0", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "dicom-parser" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "A mid-level parser of DICOM data" | ||
description = "A middle-level parser and printer of DICOM data sets" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/Enet4/dicom-rs" | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.1.0" } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.2.0" } | ||
quick-error = "1.2.3" | ||
chrono = "0.4.6" | ||
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.1.0" } | ||
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" } | ||
smallvec = "1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dicom-transfer-syntax-registry" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Eduardo Pinho <[email protected]>"] | ||
description = "A registry of DICOM transfer syntaxes" | ||
edition = "2018" | ||
|
@@ -12,8 +12,8 @@ default = [] | |
inventory-registry = ['dicom-encoding/inventory-registry', 'inventory'] | ||
|
||
[dependencies] | ||
dicom-core = { path = "../core", version = "0.1.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.1.0" } | ||
dicom-core = { path = "../core", version = "0.2.0" } | ||
dicom-encoding = { path = "../encoding", version = "0.2.0" } | ||
lazy_static = "1.2.0" | ||
encoding = "0.2.33" | ||
byteordered = "0.5.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters