difftreelog
chore add licenses and descriptions
in: master
5 files changed
Cargo.lockdiffbeforeafterboth--- 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"
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html89[dependencies]10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }12annotate-snippets = "0.8.0"13jemallocator = "0.3.2"1415[dependencies.clap]16version = "3.0.0-beta.1"17default-features = false18features = ["std", "derive"]1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "1.0.0"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[dependencies]12jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }13jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }14annotate-snippets = "0.8.0"15jemallocator = "0.3.2"1617[dependencies.clap]18version = "3.0.0-beta.1"19default-features = false20features = ["std", "derive"]crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth--- 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 = ["Лач <iam@lach.pw>"]
+license = "MIT"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
crates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth--- 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 = ["Лач <iam@lach.pw>"]
+license = "MIT"
edition = "2018"
[features]
crates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth--- 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 = ["Лач <iam@lach.pw>"]
+license = "MIT"
edition = "2018"
[features]