Skip to content

Commit 0ce2797

Browse files
committed
Fix all categories
1 parent ca4d93b commit 0ce2797

File tree

11 files changed

+24
-28
lines changed

11 files changed

+24
-28
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "edge-net"
33
version = "0.8.0"
44
authors = ["Ivan Markov <[email protected]>"]
55
edition = "2021"
6-
categories = ["embedded", "hardware-support"]
7-
keywords = ["embedded", "svc", "network"]
6+
categories = ["embedded", "hardware-support", "network-programming", "asynchronous"]
7+
keywords = ["embedded", "network"]
88
description = "no_std and no-alloc async implementations of various network protocols."
99
repository = "https://github.com/ivmarkov/edge-net"
1010
license = "MIT OR Apache-2.0"

edge-captive/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking",
15-
"dns"
14+
"network-programming",
1615
]
1716

1817
[features]

edge-dhcp/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking",
15-
"dhcp"
14+
"network-programming",
1615
]
1716

1817
[features]

edge-http/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking",
15-
"http"
14+
"network-programming",
15+
"web-programming::http-client",
16+
"web-programming::http-server",
1617
]
1718

1819
[features]

edge-mdns/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ readme = "README.md"
88
license = "MIT OR Apache-2.0"
99
categories = [
1010
"embedded",
11-
"no-std",
11+
"no-std::no-alloc",
1212
"asynchronous",
13-
"networking",
14-
"mdns"
13+
"network-programming",
1514
]
1615

1716
[features]

edge-mqtt/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
1312
"asynchronous",
14-
"networking",
15-
"mqtt"
13+
"network-programming",
1614
]
1715

1816
[dependencies]

edge-nal-embassy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking"
14+
"network-programming"
1515
]
1616

1717
[dependencies]

edge-nal-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking"
14+
"network-programming"
1515
]
1616

1717
[dependencies]

edge-nal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking"
14+
"network-programming"
1515
]
1616

1717
[dependencies]

edge-raw/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ readme = "README.md"
99
license = "MIT OR Apache-2.0"
1010
categories = [
1111
"embedded",
12-
"no-std",
12+
"no-std::no-alloc",
1313
"asynchronous",
14-
"networking",
14+
"network-programming",
1515
"ip"
1616
]
1717

0 commit comments

Comments
 (0)