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

difftreelog

build disable publishing for some crates

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

3 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>"]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 = []
after · bindings/jsonnet/Cargo.toml
1[package]2name = "jsonnet"3description = "Rust implementation of libjsonnet.so"4version = "0.3.6"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"8publish = false910[dependencies]11jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.6" }12jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6" }13jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }1415[lib]16crate-type = ["cdylib"]1718[features]19interop = []
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -5,6 +5,7 @@
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
+publish = false
 
 [features]
 default = []
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -5,6 +5,7 @@
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
+publish = false
 
 [dependencies]
 jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] }