Skip to content

Commit

Permalink
dicom 0.3.0
Browse files Browse the repository at this point in the history
- dicom-core: 0.3.0
- dicom-encoding: 0.3.0
- dicom-transfer-syntax-registry: 0.3.0
- dicom-parser: 0.3.0
- dicom-object: 0.3.0
- dicom-dictionary-std: 0.3.0
- dicom-ul: 0.2.0
- dcmdump: 0.3.0
- dicom-scpproxy: 0.2.0
- dicom-dictionary-builder: 0.1.2
  • Loading branch information
Enet4 committed Sep 30, 2020
1 parent 464d561 commit f36d112
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 34 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.2.0"
version = "0.3.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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for inspecting DICOM files"
edition = "2018"
Expand All @@ -17,7 +17,7 @@ repository = "Enet4/dicom-rs"
default = ['dicom/inventory-registry', 'dicom/backtraces']

[dependencies]
dicom = { path = "../parent/", version = "0.2.0", default-features = false }
dicom = { path = "../parent/", version = "0.3.0", default-features = false }
term_size = "0.3.2"
itertools = "0.9.0"
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.1"
version = "0.1.2"
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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "Standard DICOM attribute dictionary"
edition = "2018"
Expand All @@ -13,5 +13,5 @@ readme = "README.md"
repository = "Enet4/dicom-rs"

[dependencies]
dicom-core = { path = "../core", version = "0.2.0" }
dicom-core = { path = "../core", version = "0.3.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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "DICOM encoding and decoding primitives"
edition = "2018"
Expand All @@ -18,8 +18,8 @@ default = []
inventory-registry = ['inventory']

[dependencies]
dicom-core = { path = "../core", version = "0.2.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.2.0" }
dicom-core = { path = "../core", version = "0.3.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.3.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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -18,11 +18,11 @@ inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-synta
backtraces = ['snafu/backtraces']

[dependencies]
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" }
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" }
itertools = "0.9.0"
byteordered = "0.5.0"
smallvec = "1.0.0"
Expand Down
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.2.0"
version = "0.3.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
backtraces = ['dicom-object/backtraces']

[dependencies]
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 }
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 }
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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A middle-level parser and printer of DICOM data sets"
edition = "2018"
Expand All @@ -14,9 +14,9 @@ readme = "README.md"
repository = "Enet4/dicom-rs"

[dependencies]
dicom-core = { path = "../core", version = "0.2.0" }
dicom-encoding = { path = "../encoding", version = "0.2.0" }
dicom-core = { path = "../core", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
chrono = "0.4.6"
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" }
smallvec = "1.0.0"
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.1.0"
version = "0.2.0"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "A proxy SCP server, for logging and diagnostics"
edition = "2018"
Expand All @@ -15,6 +15,6 @@ repository = "Enet4/dicom-rs"

[dependencies]
clap = "2.33.0"
dicom-ul = { path = "../ul/", version = "0.1.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.2.0" }
dicom-ul = { path = "../ul/", version = "0.2.0" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.3.0" }
snafu = "0.6.8"
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.2.0"
version = "0.3.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A registry of DICOM transfer syntaxes"
edition = "2018"
Expand All @@ -17,8 +17,8 @@ default = []
inventory-registry = ['dicom-encoding/inventory-registry', 'inventory']

[dependencies]
dicom-core = { path = "../core", version = "0.2.0" }
dicom-encoding = { path = "../encoding", version = "0.2.0" }
dicom-core = { path = "../core", version = "0.3.0" }
dicom-encoding = { path = "../encoding", version = "0.3.0" }
lazy_static = "1.2.0"
encoding = "0.2.33"
byteordered = "0.5.0"
Expand Down
4 changes: 2 additions & 2 deletions ul/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dicom-ul"
version = "0.1.0"
version = "0.2.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 @@ -15,7 +15,7 @@ repository = "Enet4/dicom-rs"

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

[dev-dependencies]
Expand Down

0 comments on commit f36d112

Please sign in to comment.