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
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,9 +1,11 @@
 [package]
 name = "jsonnet"
+description = "Rust implementation of libjsonnet.so"
 version = "0.3.6"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
+publish = false
 
 [dependencies]
 jrsonnet-interner = { path = "../../crates/jrsonnet-interner", version = "0.3.6" }
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
before · crates/jrsonnet-cli/Cargo.toml
1[package]2name = "jrsonnet-cli"3description = "Utilities for building jrsonnet CLIs"4version = "0.3.6"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[dependencies]10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }1213[dependencies.clap]14git = "https://github.com/clap-rs/clap"15rev = "92f744cc49d12d32261010d355dc215a6d2487b9"
after · crates/jrsonnet-cli/Cargo.toml
1[package]2name = "jrsonnet-cli"3description = "Utilities for building jrsonnet CLIs"4version = "0.3.6"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"8publish = false910[dependencies]11jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] }12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }1314[dependencies.clap]15git = "https://github.com/clap-rs/clap"16rev = "92f744cc49d12d32261010d355dc215a6d2487b9"