浏览代码

Add missing manifest fields

Alessandro Decina 3 年之前
父节点
当前提交
5e18a715b2
共有 2 个文件被更改,包括 13 次插入1 次删除
  1. 6 0
      aya-log/aya-log-common/Cargo.toml
  2. 7 1
      aya-log/aya-log/Cargo.toml

+ 6 - 0
aya-log/aya-log-common/Cargo.toml

@@ -1,6 +1,12 @@
 [package]
 name = "aya-log-common"
 version = "0.1.1"
+description = "A logging library for eBPF programs."
+keywords = ["ebpf", "bpf", "log", "logging"]
+license = "MIT OR Apache-2.0"
+authors = ["The Aya Contributors"]
+repository = "https://github.com/aya-rs/aya-log"
+documentation = "https://docs.rs/aya-log"
 edition = "2018"
 
 [features]

+ 7 - 1
aya-log/aya-log/Cargo.toml

@@ -1,8 +1,14 @@
 [package]
 name = "aya-log"
 version = "0.1.1"
+description = "A logging library for eBPF programs."
+keywords = ["ebpf", "bpf", "log", "logging"]
+license = "MIT OR Apache-2.0"
+authors = ["The Aya Contributors"]
+repository = "https://github.com/aya-rs/aya-log"
+readme = "README.md"
+documentation = "https://docs.rs/aya-log"
 edition = "2018"
-publish = false
 
 [dependencies]
 aya = { version = "0.10.5", features=["async_tokio"] }