Skip to content

Commit 095f1b3

Browse files
authored
Fix README location to point to package README (#120)
This fixes a configuration mistake: we were publishing crates with the workspace README instead of each package README.
1 parent 9bce206 commit 095f1b3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ version = "0.7.0"
1212
authors = ["OpenVINO Project Developers"]
1313
edition = "2021"
1414
license = "Apache-2.0"
15-
readme = "README.md"
1615
repository = "https://github.com/intel/openvino-rs"
1716

1817
[workspace.dependencies]

crates/openvino-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true
8-
readme.workspace = true
98
repository.workspace = true
9+
readme = "README.md"
1010
documentation = "https://docs.rs/openvino-sys"
1111
keywords = ["openvino", "machine-learning", "ml", "neural-network"]
1212
categories = ["external-ffi-bindings", "science"]

crates/openvino/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ version.workspace = true
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true
8-
readme.workspace = true
98
repository.workspace = true
9+
readme = "README.md"
1010
documentation = "https://docs.rs/openvino"
1111
keywords = ["openvino", "machine-learning", "ml", "neural-network"]
1212
categories = ["api-bindings", "science"]

0 commit comments

Comments
 (0)