difftreelog
chore bump versions
in: master
7 files changed
Cargo.lockdiffbeforeafterboth96source = "registry+https://github.com/rust-lang/crates.io-index"96source = "registry+https://github.com/rust-lang/crates.io-index"97checksum = "d6173fd61b610d15a7566dd7b7620775627441c4ab9dac8906e17cb93a24b782"97checksum = "d6173fd61b610d15a7566dd7b7620775627441c4ab9dac8906e17cb93a24b782"9899[[package]]100name = "hashbrown"101version = "0.8.1"102source = "registry+https://github.com/rust-lang/crates.io-index"103checksum = "34f595585f103464d8d2f6e9864682d74c1601fed5e07d62b1c9058dba8246fb"104dependencies = [105 "autocfg",106]9810799[[package]]108[[package]]100name = "heck"109name = "heck"116125117[[package]]126[[package]]118name = "indexmap"127name = "indexmap"119version = "1.4.0"128version = "1.5.0"120source = "registry+https://github.com/rust-lang/crates.io-index"129source = "registry+https://github.com/rust-lang/crates.io-index"121checksum = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe"130checksum = "5b88cd59ee5f71fea89a62248fc8f387d44400cefe05ef548466d61ced9029a7"122dependencies = [131dependencies = [123 "autocfg",132 "autocfg",133 "hashbrown",124]134]125135126[[package]]136[[package]]127name = "jrsonnet"137name = "jrsonnet"128version = "1.0.0"138version = "0.3.0"129dependencies = [139dependencies = [130 "clap",140 "clap",131 "jrsonnet-cli",141 "jrsonnet-cli",145155146[[package]]156[[package]]147name = "jrsonnet-evaluator"157name = "jrsonnet-evaluator"148version = "1.0.0"158version = "0.3.0"149dependencies = [159dependencies = [150 "annotate-snippets",160 "annotate-snippets",151 "base64",161 "base64",162172163[[package]]173[[package]]164name = "jrsonnet-parser"174name = "jrsonnet-parser"165version = "1.0.0"175version = "0.3.0"166dependencies = [176dependencies = [167 "jrsonnet-stdlib",177 "jrsonnet-stdlib",168 "peg",178 "peg",174184175[[package]]185[[package]]176name = "jrsonnet-stdlib"186name = "jrsonnet-stdlib"177version = "1.0.0"187version = "0.3.0"178188179[[package]]189[[package]]180name = "jsonnet"190name = "jsonnet"235245236[[package]]246[[package]]237name = "peg"247name = "peg"238version = "0.6.2"248version = "0.6.3"239source = "registry+https://github.com/rust-lang/crates.io-index"249source = "registry+https://github.com/rust-lang/crates.io-index"240checksum = "9075875c14bb21f25f11cad4b6ad2e4dd443b8fb83900b2fbdd6ebd744b82e97"250checksum = "9f76678828272f177ac33b7e2ac2e3e73cc6c1cd1e3e387928aa69562fa51367"241dependencies = [251dependencies = [242 "peg-macros",252 "peg-macros",243 "peg-runtime",253 "peg-runtime",244]254]245255246[[package]]256[[package]]247name = "peg-macros"257name = "peg-macros"248version = "0.6.2"258version = "0.6.3"249source = "registry+https://github.com/rust-lang/crates.io-index"259source = "registry+https://github.com/rust-lang/crates.io-index"250checksum = "c24c165fd39e995246140cc78df55c56c6733ba87e6658cb3e197b8856c62852"260checksum = "636d60acf97633e48d266d7415a9355d4389cea327a193f87df395d88cd2b14d"251dependencies = [261dependencies = [252 "peg-runtime",262 "peg-runtime",253 "proc-macro2",263 "proc-macro2",256266257[[package]]267[[package]]258name = "peg-runtime"268name = "peg-runtime"259version = "0.6.2"269version = "0.6.3"260source = "registry+https://github.com/rust-lang/crates.io-index"270source = "registry+https://github.com/rust-lang/crates.io-index"261checksum = "0c1a2897e69d986c7986747ebad425cf03746ec5e3e09bb3b2600f91301ba864"271checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5"262272263[[package]]273[[package]]264name = "proc-macro-error"274name = "proc-macro-error"bindings/jsonnet/Cargo.tomldiffbeforeafterboth7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html889[dependencies]9[dependencies]10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }121213[lib]13[lib]14crate-type = ["cdylib"]14crate-type = ["cdylib"]cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet"2name = "jrsonnet"3description = "Rust jsonnet implementation"3description = "Rust jsonnet implementation"4version = "1.0.0"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]5authors = ["Лач <iam@lach.pw>"]6license = "MIT"6license = "MIT"7edition = "2018"7edition = "2018"14mimalloc = []14mimalloc = []151516[dependencies]16[dependencies]17jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }17jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }18jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }18jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }19jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }19jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }20# TODO: Fix mimalloc compile errors, and use them20# TODO: Fix mimalloc compile errors, and use them21mimallocator = { version = "0.1.3", optional = true }21mimallocator = { version = "0.1.3", optional = true }crates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html9910[dependencies]10[dependencies]11jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0", features = ["explaining-traces"] }11jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0", features = ["explaining-traces"] }12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }131314[dependencies.clap]14[dependencies.clap]15git = "https://github.com/clap-rs/clap"15git = "https://github.com/clap-rs/clap"crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-evaluator"2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"3description = "jsonnet interpreter"4version = "1.0.0"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]5authors = ["Лач <iam@lach.pw>"]6license = "MIT"6license = "MIT"7edition = "2018"7edition = "2018"24unstable = []24unstable = []252526[dependencies]26[dependencies]27jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }27jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.0" }28jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }28jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }29pathdiff = "0.2.0"29pathdiff = "0.2.0"303031closure = "0.3.0"31closure = "0.3.0"32indexmap = "1.4.0"32indexmap = "1.5.0"333334md5 = "0.7.0"34md5 = "0.7.0"35base64 = "0.12.3"35base64 = "0.12.3"48optional = true48optional = true494950[build-dependencies]50[build-dependencies]51jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }51jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }52jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }52jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }53structdump = "0.1.2"53structdump = "0.1.2"54serde = "1.0.114"54serde = "1.0.114"55bincode = "1.3.1"55bincode = "1.3.1"crates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-parser"2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"3description = "jsonnet language parser and AST"4version = "1.0.0"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]5authors = ["Лач <iam@lach.pw>"]6license = "MIT"6license = "MIT"7edition = "2018"7edition = "2018"14dump = ["structdump", "structdump-derive"]14dump = ["structdump", "structdump-derive"]151516[dependencies]16[dependencies]17peg = "0.6.2"17peg = "0.6.3"18unescape = "0.1.0"18unescape = "0.1.0"191920serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }20serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }21structdump = { version = "0.1.2", optional = true }21structdump = { version = "0.1.2", optional = true }22structdump-derive = { version = "0.1.2", optional = true }22structdump-derive = { version = "0.1.2", optional = true }232324[dev-dependencies]24[dev-dependencies]25jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }25jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }2626crates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-stdlib"2name = "jrsonnet-stdlib"3description = "jsonnet standard library packaged as crate"3description = "jsonnet standard library packaged as crate"4version = "1.0.0"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]5authors = ["Лач <iam@lach.pw>"]6license = "MIT"6license = "MIT"7edition = "2018"7edition = "2018"