From d5335d5282db29a44df4500331131659899861de Mon Sep 17 00:00:00 2001 From: ynqa Date: Mon, 4 Mar 2024 20:14:11 +0900 Subject: [PATCH] fillin Cargo.toml --- j9-sys/Cargo.toml | 5 +++++ j9/Cargo.toml | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/j9-sys/Cargo.toml b/j9-sys/Cargo.toml index 1793b5c..160976d 100644 --- a/j9-sys/Cargo.toml +++ b/j9-sys/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "j9-sys" version = "0.1.0" +authors = ["ynqa "] edition = "2021" +description = "Rust bindings for jq" +repository = "https://github.com/ynqa/j9" +license = "MIT" +readme = "README.md" [dependencies] diff --git a/j9/Cargo.toml b/j9/Cargo.toml index 1a94634..56c405b 100644 --- a/j9/Cargo.toml +++ b/j9/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "j9" version = "0.1.0" +authors = ["ynqa "] edition = "2021" - +description = "Rust interface for jq-based JSON processing" +repository = "https://github.com/ynqa/j9" +license = "MIT" +readme = "README.md" [lib] name = "j9" path = "src/lib.rs"