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
before · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]18# Adds ability to build import closure in async19async-import = ["async-trait"]2021# Allows to preserve field order in objects22exp-preserve-order = []23# Implements field destructuring24exp-destruct = ["jrsonnet-parser/exp-destruct"]25# Iteration over objects yields [key, value] elements26exp-object-iteration = []27# Bigint type28exp-bigint = ["num-bigint"]2930# Improves performance, and implements some useful things using nightly-only features31nightly = ["hashbrown/nightly"]3233[dependencies]34jrsonnet-interner.workspace = true35jrsonnet-parser.workspace = true36jrsonnet-types.workspace = true37jrsonnet-macros.workspace = true38jrsonnet-gcmodule.workspace = true3940pathdiff = "0.2.1"41hashbrown = "0.13.2"42static_assertions = "1.1"4344rustc-hash = "1.1"4546thiserror = "1.0"4748serde = "1.0"4950anyhow = { version = "1.0", optional = true }51# Friendly errors52strsim = { version = "0.10.0", optional = true }53# Serialized stdlib54bincode = { version = "1.3", optional = true }55# Explaining traces56annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }57# Async imports58async-trait = { version = "0.1.60", optional = true }59# Bigint60num-bigint = { version = "0.4.3", features = ["serde"], optional = true }
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
--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -2,6 +2,7 @@
 name = "jrsonnet-stdlib"
 description = "jsonnet standard library packaged as crate"
 version.workspace = true
+repository.workspace = true
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2021"
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"