Skip to content

Commit

Permalink
fix core dep again
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieupoumeyrolsonos committed Jan 16, 2024
1 parent 77c8d36 commit 2128ec3
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion api/rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ flate2.workspace = true
half.workspace = true
ndarray.workspace = true
tract-api = { path = ".." , version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef/" , version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef/" , version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl/" , version = "=0.20.23-pre" }
tract-onnx = { path = "../../onnx/" , version = "=0.20.23-pre" }
tract-extra = { path = "../../extra/" , version = "=0.20.23-pre" }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ serde.workspace = true
serde_json.workspace = true
tract-core = { version = "=0.21.0", path = "../core" }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-nnef = { version = "=0.20.23-pre", path = "../nnef" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-libcli = { version = "=0.20.23-pre", path = "../libcli" }
tract-extra = { optional = true, version = "=0.20.23-pre", path = "../extra" }
tract-pulse-opl = { optional = true, version = "=0.20.23-pre", path = "../pulse-opl" }
Expand Down
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 = "tract-core"
version = "0.20.23-pre"
version = "0.21.0"
license = "MIT OR Apache-2.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
2 changes: 1 addition & 1 deletion examples/nnef-dump-mobilenet-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
image.workspace = true

tract-nnef = { version = "=0.20.23-pre", path = "../../nnef" }
tract-nnef = { version = "=0.21.0", path = "../../nnef" }
2 changes: 1 addition & 1 deletion examples/nnef-mobilenet-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
image.workspace = true

tract-nnef = { version = "=0.20.23-pre", path = "../../nnef" }
tract-nnef = { version = "=0.21.0", path = "../../nnef" }
2 changes: 1 addition & 1 deletion extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.75"
maintenance = { status = "actively-developed" }

[dependencies]
tract-nnef = { version = "=0.20.23-pre", path = "../nnef" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-pulse = { version = "=0.20.23-pre", path = "../pulse" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion harness/nnef-inceptionv3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
flate2.workspace = true
image.workspace = true
tract-core = { version = "=0.21.0", path = "../../core" }
tract-nnef = { version = "=0.20.23-pre", path = "../../nnef" }
tract-nnef = { version = "=0.21.0", path = "../../nnef" }

[dev-dependencies]
dinghy-test.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion nnef/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef"
version = "0.20.23-pre"
version = "0.21.0"
authors = ["Mathieu Poumeyrol <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Tiny, no-nonsense, self contained, TensorFlow and ONNX inference"
Expand Down
4 changes: 2 additions & 2 deletions nnef/nnef-resources/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tract-nnef-resources"
version = "0.20.23-pre"
version = "0.21.0"
authors = [
"Mathieu Poumeyrol <[email protected]>",
"Hubert de La Jonquière <[email protected]>"
Expand All @@ -22,6 +22,6 @@ serde_json.workspace = true
serde.workspace = true
anyhow.workspace = true
nom.workspace = true
tract-nnef = { version = "=0.20.23-pre", path = "../../nnef" }
tract-nnef = { version = "=0.21.0", path = "../../nnef" }


2 changes: 1 addition & 1 deletion onnx-opl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ log.workspace = true
rand.workspace = true
rand_distr.workspace = true
rustfft.workspace = true
tract-nnef = { version = "=0.20.23-pre", path = "../nnef" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }

[dev-dependencies]
env_logger.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion onnx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ memmap2.workspace = true
num-integer.workspace = true
prost.workspace = true
smallvec.workspace = true
tract-nnef = { version = "=0.20.23-pre", path = "../nnef" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }
tract-hir = { version = "=0.20.23-pre", path = "../hir" }
tract-onnx-opl = { version = "=0.20.23-pre", path = "../onnx-opl" }

Expand Down
2 changes: 1 addition & 1 deletion pulse-opl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
downcast-rs.workspace = true
lazy_static.workspace = true
tract-nnef = { version = "=0.20.23-pre", path = "../nnef" }
tract-nnef = { version = "=0.21.0", path = "../nnef" }

[features]
complex = [ "tract-nnef/complex" ]
2 changes: 1 addition & 1 deletion test-rt/test-f16/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lazy_static.workspace = true
log.workspace = true
tflitec.workspace = true
tract-core = { path = "../../core", version = "=0.21.0" }
tract-nnef = { path = "../../nnef", version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
infra = { path = "../infra" }
suite-onnx = { path = "../suite-onnx" }
Expand Down
2 changes: 1 addition & 1 deletion test-rt/test-nnef-cycle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ suite-onnx = { path = "../suite-onnx" }
suite-unit = { path = "../suite-unit" }
tract-core = { path = "../../core", version = "=0.21.0" }
tract-onnx-opl = { path = "../../onnx-opl", version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef", version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
2 changes: 1 addition & 1 deletion test-rt/test-onnx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
lazy_static.workspace = true
tract-core = { path = "../../core", version = "=0.21.0" }
tract-nnef = { path = "../../nnef", version = "=0.20.23-pre" }
tract-nnef = { path = "../../nnef", version = "=0.21.0" }
tract-onnx = { path = "../../onnx", version = "=0.20.23-pre" }
suite-onnx = { path = "../suite-onnx" }

Expand Down

0 comments on commit 2128ec3

Please sign in to comment.