From b9714ab1c909b8fe24bf822e12f2da4ed9b4379b Mon Sep 17 00:00:00 2001 From: Лач Date: Sat, 27 Jun 2020 13:28:55 +0000 Subject: [PATCH] chore: add licenses and descriptions --- --- a/Cargo.lock +++ b/Cargo.lock @@ -122,7 +122,7 @@ [[package]] name = "jrsonnet" -version = "0.1.0" +version = "1.0.0" dependencies = [ "annotate-snippets", "clap", @@ -133,7 +133,7 @@ [[package]] name = "jrsonnet-evaluator" -version = "0.1.0" +version = "1.0.0" dependencies = [ "bincode", "closure", @@ -147,7 +147,7 @@ [[package]] name = "jrsonnet-parser" -version = "0.1.0" +version = "1.0.0" dependencies = [ "jrsonnet-stdlib", "peg", @@ -159,7 +159,7 @@ [[package]] name = "jrsonnet-stdlib" -version = "0.1.0" +version = "1.0.0" [[package]] name = "lazy_static" --- a/cmds/jrsonnet/Cargo.toml +++ b/cmds/jrsonnet/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "jrsonnet" +description = "Rust jsonnet implementation" version = "1.0.0" authors = ["Лач "] +license = "MIT" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html --- a/crates/jrsonnet-evaluator/Cargo.toml +++ b/crates/jrsonnet-evaluator/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "jrsonnet-evaluator" +description = "jsonnet interpreter" version = "1.0.0" authors = ["Лач "] +license = "MIT" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html --- a/crates/jrsonnet-parser/Cargo.toml +++ b/crates/jrsonnet-parser/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "jrsonnet-parser" +description = "jsonnet language parser and AST" version = "1.0.0" authors = ["Лач "] +license = "MIT" edition = "2018" [features] --- a/crates/jrsonnet-stdlib/Cargo.toml +++ b/crates/jrsonnet-stdlib/Cargo.toml @@ -1,7 +1,9 @@ [package] name = "jrsonnet-stdlib" +description = "jsonnet standard library packaged as crate" version = "1.0.0" authors = ["Лач "] +license = "MIT" edition = "2018" [features] -- gitstuff