git.delta.rocks / jrsonnet / refs/commits / 77689297a72f

difftreelog

build add license field

Yaroslav Bolyukin2021-04-30parent: #3003167.patch.diff
in: master

4 files changed

modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
before · bindings/jsonnet/Cargo.toml
1[package]2name = "jsonnet"3version = "0.3.6"4authors = ["Yaroslav Bolyukin <iam@lach.pw>"]5edition = "2018"67[dependencies]8jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.6" }9jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6" }10jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }1112[lib]13crate-type = ["cdylib"]1415[features]16interop = []
after · bindings/jsonnet/Cargo.toml
1[package]2name = "jsonnet"3version = "0.3.6"4authors = ["Yaroslav Bolyukin <iam@lach.pw>"]5license = "MIT"6edition = "2018"78[dependencies]9jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.6" }10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }1213[lib]14crate-type = ["cdylib"]1516[features]17interop = []
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -3,6 +3,7 @@
 description = "Utilities for building jrsonnet CLIs"
 version = "0.3.6"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
+license = "MIT"
 edition = "2018"
 
 [dependencies]
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -3,6 +3,7 @@
 description = "Jrsonnet string interning"
 version = "0.3.6"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
+license = "MIT"
 edition = "2018"
 
 [dependencies]
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-types/Cargo.toml
+++ b/crates/jrsonnet-types/Cargo.toml
@@ -3,6 +3,7 @@
 description = "Jrsonnet type system definition"
 version = "0.3.6"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
+license = "MIT"
 edition = "2018"
 
 [dependencies]