git.delta.rocks / jrsonnet / refs/commits / b9714ab1c909

difftreelog

chore add licenses and descriptions

Лач2020-06-27parent: #20f9304.patch.diff
in: master

5 files changed

modifiedCargo.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"
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
--- 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 = ["Лач <iam@lach.pw>"]
+license = "MIT"
 edition = "2018"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
before · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"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[features]10default = ["serialized-stdlib", "faster"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]13# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time14codegenerated-stdlib = []15# Replace some standard library functions with faster implementations (I.e manifestJsonEx)16# Library works fine without this feature, but requires more memory and time for std function calls17faster = []1819[dependencies]20jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }21closure = "0.3.0"22jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }23indexmap = "1.4.0"24md5 = "0.7.0"2526serde = { version = "1.0.114", optional = true }27bincode = { version = "1.3.1", optional = true }2829[build-dependencies]30jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }31jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }32structdump = "0.1.2"33serde = "1.0.114"34bincode = "1.3.1"
after · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"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[features]12default = ["serialized-stdlib", "faster"]13# Serializes standard library AST instead of parsing them every run14serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]15# Same as above, but with generated code instead of serde. Reduces memory usage, but increases binary size and compilation time16codegenerated-stdlib = []17# Replace some standard library functions with faster implementations (I.e manifestJsonEx)18# Library works fine without this feature, but requires more memory and time for std function calls19faster = []2021[dependencies]22jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }23closure = "0.3.0"24jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }25indexmap = "1.4.0"26md5 = "0.7.0"2728serde = { version = "1.0.114", optional = true }29bincode = { version = "1.3.1", optional = true }3031[build-dependencies]32jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }33jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }34structdump = "0.1.2"35serde = "1.0.114"36bincode = "1.3.1"
modifiedcrates/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]
modifiedcrates/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]