Skip to content

Commit

Permalink
dicom 0.2.0
Browse files Browse the repository at this point in the history
- `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
Enet4 committed May 24, 2020
1 parent 099b03c commit 514ff65
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 32 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.1.0"
version = "0.2.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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for inspecting DICOM files"
edition = "2018"
Expand All @@ -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 }
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.0"
version = "0.1.1"
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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Standard DICOM attribute dictionary"
edition = "2018"
Expand All @@ -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"
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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "DICOM encoding and decoding primitives"
edition = "2018"
Expand All @@ -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"
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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand All @@ -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"
14 changes: 7 additions & 7 deletions parent/Cargo.toml
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"
Expand All @@ -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 }
10 changes: 5 additions & 5 deletions parser/Cargo.toml
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"
2 changes: 1 addition & 1 deletion scpproxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ repository = "https://github.com/Enet4/dicom-rs"
clap = "2.33.0"
quick-error = "1.2.3"
dicom-ul = { path = "../ul/", version = "0.1.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.1.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" }
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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A registry of DICOM transfer syntaxes"
edition = "2018"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ul/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/Enet4/dicom-rs"
[dependencies]
quick-error = "1.2.3"
byteordered = "0.5.0"
dicom-encoding = { path = "../encoding/", version = "0.1.0" }
dicom-encoding = { path = "../encoding/", version = "0.2.0" }

[dev-dependencies]
matches = "0.1.8"

0 comments on commit 514ff65

Please sign in to comment.