difftreelog
chore! release 1.0.0
in: master
BREAKING CHANGE: from now, every commit will correctly follow conventional commits, and versions will be increased by semver
4 files changed
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet"2name = "jrsonnet"3version = "0.1.0"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]5edition = "2018"5edition = "2018"667# 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" }10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }12annotate-snippets = "0.8.0"12annotate-snippets = "0.8.0"13jemallocator = "0.3.2"13jemallocator = "0.3.2"1414crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-evaluator"2name = "jrsonnet-evaluator"3version = "0.1.0"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]5edition = "2018"5edition = "2018"6617faster = []17faster = []181819[dependencies]19[dependencies]20jrsonnet-parser = { path = "../jrsonnet-parser" }20jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }21closure = "0.3.0"21closure = "0.3.0"22jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }22jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }23indexmap = "1.4.0"23indexmap = "1.4.0"24md5 = "0.7.0"24md5 = "0.7.0"252526serde = { version = "1.0.114", optional = true }26serde = { version = "1.0.114", optional = true }27bincode = { version = "1.3.1", optional = true }27bincode = { version = "1.3.1", optional = true }282829[build-dependencies]29[build-dependencies]30jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"] }30jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }31jrsonnet-stdlib = { path = "../jrsonnet-stdlib" }31jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }32structdump = "0.1.2"32structdump = "0.1.2"33serde = "1.0.114"33serde = "1.0.114"34bincode = "1.3.1"34bincode = "1.3.1"crates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-parser"2name = "jrsonnet-parser"3version = "0.1.0"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]5edition = "2018"5edition = "2018"6620structdump-derive = { version = "0.1.2", optional = true }20structdump-derive = { version = "0.1.2", optional = true }212122[dev-dependencies]22[dev-dependencies]23jrsonnet-stdlib = { version = "0.1.0", path = "../jrsonnet-stdlib" }23jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }2424crates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "jrsonnet-stdlib"2name = "jrsonnet-stdlib"3version = "0.1.0"3version = "1.0.0"4authors = ["Лач <iam@lach.pw>"]4authors = ["Лач <iam@lach.pw>"]5edition = "2018"5edition = "2018"66