-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yaroslav Bolyukin <[email protected]>
- Loading branch information
1 parent
d16eeca
commit 23c027a
Showing
7 changed files
with
33 additions
and
33 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "jsonnet" | ||
version = "0.1.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" } | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1" } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" } | ||
|
||
[lib] | ||
crate-type = ["cdylib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jrsonnet" | ||
description = "Rust jsonnet implementation" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -14,13 +14,13 @@ default = [] | |
mimalloc = [] | ||
|
||
[dependencies] | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" } | ||
jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" } | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1" } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" } | ||
jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.1" } | ||
# TODO: Fix mimalloc compile errors, and use them | ||
mimallocator = { version = "0.1.3", optional = true } | ||
thiserror = "1.0.20" | ||
|
||
[dependencies.clap] | ||
git = "https://github.com/clap-rs/clap" | ||
rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0" | ||
rev = "3e9ee86713b5c407b50ba76f30cffaed25952063" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "jrsonnet-cli" | ||
description = "Utilities for building jrsonnet CLIs" | ||
version = "0.1.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0", features = ["explaining-traces"] } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" } | ||
jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1", features = ["explaining-traces"] } | ||
jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" } | ||
|
||
[dependencies.clap] | ||
git = "https://github.com/clap-rs/clap" | ||
rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0" | ||
rev = "3e9ee86713b5c407b50ba76f30cffaed25952063" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jrsonnet-evaluator" | ||
description = "jsonnet interpreter" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -26,8 +26,8 @@ explaining-traces = ["annotate-snippets"] | |
unstable = [] | ||
|
||
[dependencies] | ||
jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.0" } | ||
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" } | ||
jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.1" } | ||
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" } | ||
pathdiff = "0.2.0" | ||
|
||
closure = "0.3.0" | ||
|
@@ -41,7 +41,7 @@ thiserror = "1.0.20" | |
|
||
# Serialized stdlib | ||
[dependencies.serde] | ||
version = "1.0.115" | ||
version = "1.0.116" | ||
optional = true | ||
[dependencies.bincode] | ||
version = "1.3.1" | ||
|
@@ -61,5 +61,5 @@ optional = true | |
jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" } | ||
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" } | ||
structdump = "0.1.2" | ||
serde = "1.0.115" | ||
serde = "1.0.116" | ||
bincode = "1.3.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jrsonnet-parser" | ||
description = "jsonnet language parser and AST" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -17,9 +17,9 @@ dump = ["structdump", "structdump-derive"] | |
peg = "0.6.3" | ||
unescape = "0.1.0" | ||
|
||
serde = { version = "1.0.114", features = ["derive", "rc"], optional = true } | ||
serde = { version = "1.0.116", features = ["derive", "rc"], optional = true } | ||
structdump = { version = "0.1.2", optional = true } | ||
structdump-derive = { version = "0.1.2", optional = true } | ||
|
||
[dev-dependencies] | ||
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" } | ||
jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "jrsonnet-stdlib" | ||
description = "jsonnet standard library packaged as crate" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
authors = ["Лач <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|