git.delta.rocks / jrsonnet / refs/commits / 3221913a82c2

difftreelog

doc: add repository manifest field

Yaroslav Bolyukin2023-04-17parent: #252cf3b.patch.diff
in: master

9 files changed

modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,6 @@
 [workspace]
 package.version = "0.5.0-pre7"
+package.repository = "https://github.com/CertainLach/jrsonnet"
 members = ["crates/*", "bindings/jsonnet", "cmds/jrsonnet", "tests"]
 default-members = ["cmds/jrsonnet"]
 
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet"
 description = "Rust jsonnet implementation"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-evaluator"
 description = "jsonnet interpreter"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-interner"
 description = "Jrsonnet string interning"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-macros/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-macros/Cargo.toml
+++ b/crates/jrsonnet-macros/Cargo.toml
@@ -4,6 +4,7 @@
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 version.workspace = true
+repository.workspace = true
 edition = "2021"
 
 [lib]
modifiedcrates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-parser/Cargo.toml
+++ b/crates/jrsonnet-parser/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-parser"
 description = "jsonnet language parser and AST"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
modifiedcrates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth
before · crates/jrsonnet-stdlib/Cargo.toml
1[package]2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["codegenerated-stdlib"]11# Speed-up initialization by generating code for parsed stdlib, instead12# of invoking parser for it13codegenerated-stdlib = ["jrsonnet-parser/structdump"]14# Enables legacy `std.thisFile` support, at the cost of worse caching15legacy-this-file = []16# Add order preservation flag to some functions17exp-preserve-order = ["jrsonnet-evaluator/exp-preserve-order"]18# Add nonstandard `std.sha256` function19exp-more-hashes = ["dep:sha2"]20# Bigint type21exp-bigint = ["num-bigint", "jrsonnet-evaluator/exp-bigint"]2223[dependencies]24jrsonnet-evaluator.workspace = true25jrsonnet-macros.workspace = true26jrsonnet-parser.workspace = true27jrsonnet-gcmodule.workspace = true2829# Used for stdlib AST serialization30bincode = { version = "1.3", optional = true }31# Used both for stdlib AST serialization and std.parseJson/std.parseYaml32serde = "1.0"3334# std.md535md5 = "0.7.0"36# std.base6437base64 = "0.21.0"38# std.parseJson39serde_json = "1.0"40# std.parseYaml, custom library fork is used for C++/golang compatibility41serde_yaml_with_quirks = "0.8.24"4243sha2 = { version = "0.10.6", optional = true }44num-bigint = { version = "0.4.3", optional = true }4546[build-dependencies]47jrsonnet-parser.workspace = true48structdump = { version = "0.2.0", features = ["derive"] }
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-types/Cargo.toml
+++ b/crates/jrsonnet-types/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-types"
 description = "Jrsonnet type system definition"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"