Skip to content

Commit d986f64

Browse files
committed
Update Cargo.tomls
1 parent c58608f commit d986f64

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

canny-edge-detector/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "canny-edge-detector"
33
version = "0.1.0"
44
authors = ["Markus Mayer <widemeadows@gmail.com>"]
5+
license = "MIT"
56
edition = "2021"
67
publish = false
78

openvx-sys/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[package]
22
name = "openvx-sys"
33
version = "0.1.0"
4+
description = "Native bindings to the OpenVX library"
45
authors = ["Markus Mayer <widemeadows@gmail.com>"]
56
edition = "2021"
6-
description = "Native bindings to the OpenVX library"
77
keywords = ["openvx"]
8+
categories = ["computer-vision", "external-ffi-bindings"]
9+
license = "MIT"
810
build = "build.rs"
911
links = "openvx"
1012

openvx/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[package]
22
name = "openvx"
33
version = "0.1.0"
4+
description = "OpenVX wrapper"
45
authors = ["Markus Mayer <widemeadows@gmail.com>"]
6+
keywords = ["openvx"]
7+
categories = ["computer-vision", "api-bindings"]
8+
license = "MIT"
59
edition = "2021"
610

711
[dependencies]
8-
openvx-sys = { path ="../openvx-sys" }
12+
openvx-sys = { path ="../openvx-sys", version="0.1.0" }
913
static_assertions = "1.1.0"

0 commit comments

Comments
 (0)