From 8fd2816a9694fba4dbbdbc82c9d25a0d18f10878 Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Thu, 12 Jul 2018 20:37:17 +0200 Subject: Changing a bunch of version numbers around. This is really not a good solution I need a script that can do this automatically for releases because it's getting REALLY annoying and time consuming... --- Cargo.lock | 65 +++++++++++++++++++++++++++++++++++---------- lockchain-client/Cargo.toml | 2 +- lockchain-crypto/Cargo.toml | 4 +-- lockchain-files/Cargo.toml | 2 +- lockchain-http/Cargo.toml | 3 +-- 5 files changed, 56 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76253d7..ad95aa1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,9 +77,29 @@ dependencies = [ "version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "aes" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aes-soft 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "aesni 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "aes-soft" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "opaque-debug 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "aesni" -version = "0.2.2" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -222,6 +242,20 @@ dependencies = [ "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "block-modes" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "block-padding 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "block-padding" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "blowfish" version = "0.3.0" @@ -825,12 +859,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "lockchain-client" version = "0.0.0" dependencies = [ - "lockchain-core 0.9.0", + "lockchain-core 0.9.1-alpha.0", ] [[package]] name = "lockchain-core" -version = "0.9.0" +version = "0.9.1-alpha.0" dependencies = [ "base64 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "bcrypt 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -849,8 +883,8 @@ dependencies = [ name = "lockchain-crypto" version = "0.7.1" dependencies = [ - "lockchain-core 0.9.0", - "miscreant 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lockchain-core 0.9.1-alpha.0", + "miscreant 0.4.0-beta2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -859,7 +893,7 @@ dependencies = [ name = "lockchain-files" version = "0.7.2" dependencies = [ - "lockchain-core 0.9.0", + "lockchain-core 0.9.1-alpha.0", ] [[package]] @@ -870,7 +904,7 @@ dependencies = [ "actix-web 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", - "lockchain-core 0.9.0", + "lockchain-core 0.9.1-alpha.0", "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -881,7 +915,7 @@ version = "0.1.0" dependencies = [ "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "insult 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "lockchain-core 0.9.0", + "lockchain-core 0.9.1-alpha.0", "lockchain-files 0.7.2", "lockchain-http 0.3.0", ] @@ -989,17 +1023,16 @@ dependencies = [ [[package]] name = "miscreant" -version = "0.3.0" +version = "0.4.0-beta2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "aesni 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "aes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "block-modes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "cmac 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "crypto-mac 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "dbl 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "pmac 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subtle 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1933,7 +1966,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum actix 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7f0b2daad36916ccd2b162dbc5a04a74df642a29391b1a341c8ee3e82026cb16" "checksum actix-web 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)" = "cebfb353ebcae66f93c190b80ef12b8c82557413856e3e65dbaab662a48ec72d" "checksum actix_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4b1dc922654b9aca7a8a31eab875fde804fa9fbd67f220f2e457787b23590f2" -"checksum aesni 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5e88c3698cd61460af7bdbcc747d0e37b61255492fcfc81845dd4666f3bf6714" +"checksum aes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0275405eedf13afd19de588add12a3b0d481a50b194eeb826e9dece11e741331" +"checksum aes-soft 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "91f401742d8c1b0a3d01f53563f98d8ef0beea460b8d37322faf9fb4c7977cfa" +"checksum aesni 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b1ca074691b47c3dc585e05e45f6d069c75d0209069ca09b1c49ea37720e7b5f" "checksum aho-corasick 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f0ba20154ea1f47ce2793322f049c5646cc6d0fa9759d5f333f286e507bf8080" "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" @@ -1949,6 +1984,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789" "checksum blake2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73b77e29dbd0115e43938be2d5128ecf81c0353e00acaa65339a1242586951d9" "checksum block-cipher-trait 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bd4e45002699a6d10345f5fee7a99545e5bcf3be02d631d7fff9217f8d3cebbd" +"checksum block-modes 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "862511b40f91a3305dc119fdfdc25b561779f78828495e41b71d360b8c9f56df" +"checksum block-padding 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75bc2cfa52dc218b47ea000b15e6e5d00ca2f831db31e41592383c14d8802907" "checksum blowfish 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "95ede07672d9f4144c578439aa352604ec5c67a80c940fe8d382ddbeeeb3c6d8" "checksum brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd" "checksum brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e" @@ -2033,7 +2070,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum mio 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)" = "4fcfcb32d63961fb6f367bfd5d21e4600b92cd310f71f9dca25acae196eb1560" "checksum mio-uds 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "84c7b5caa3a118a6e34dbac36504503b1e8dc5835e833306b9d6af0e05929f79" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum miscreant 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "345b52b06ce7a0e2fab0a0ea99ef52e81d63102ba0425b2914f1867b9d820628" +"checksum miscreant 0.4.0-beta2 (registry+https://github.com/rust-lang/crates.io-index)" = "ed87c1c62b5b8fd24c5148aa5ec073467b6eeddc68470675fac711d8156a5b53" "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" "checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" diff --git a/lockchain-client/Cargo.toml b/lockchain-client/Cargo.toml index 39007c2..097319a 100644 --- a/lockchain-client/Cargo.toml +++ b/lockchain-client/Cargo.toml @@ -10,4 +10,4 @@ readme = "README.md" license = "MIT/X11 OR Apache-2.0" [dependencies] -lockchain-core = { version = "0.9.0", path = "../lockchain-core" } +lockchain-core = { version = "0.9.0" } #, path = "../lockchain-core" } diff --git a/lockchain-crypto/Cargo.toml b/lockchain-crypto/Cargo.toml index 2b13423..08d7f53 100644 --- a/lockchain-crypto/Cargo.toml +++ b/lockchain-crypto/Cargo.toml @@ -9,8 +9,8 @@ version = "0.7.1" authors = ["Katharina Fey "] [dependencies] -lockchain-core = { version = "0.9.0", path = "../lockchain-core" } +lockchain-core = { version = "0.9.0" } #, path = "../lockchain-core" } serde_derive = "1.0" serde = "1.0" -miscreant = "0.3" \ No newline at end of file +miscreant = "0.4.0-beta1" \ No newline at end of file diff --git a/lockchain-files/Cargo.toml b/lockchain-files/Cargo.toml index 5be24ee..933dc80 100644 --- a/lockchain-files/Cargo.toml +++ b/lockchain-files/Cargo.toml @@ -10,4 +10,4 @@ readme = "README.md" license = "MIT/X11 OR Apache-2.0" [dependencies] -lockchain-core = { version = "0.9.0", path = "../lockchain-core" } +lockchain-core = { version = "0.9.1-alpha.0", path = "../lockchain-core" } diff --git a/lockchain-http/Cargo.toml b/lockchain-http/Cargo.toml index ede854d..c799e28 100644 --- a/lockchain-http/Cargo.toml +++ b/lockchain-http/Cargo.toml @@ -9,9 +9,8 @@ homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-http" readme = "README.md" license = "MIT/X11 OR Apache-2.0" - [dependencies] -lockchain-core = { version = "0.9.0", path = "../lockchain-core" } +lockchain-core = { version = "0.9.0" }# lockchain-core = { version = "0.9.1-alpha.0", path = "../lockchain-core" } env_logger = "0.5" # Serialisation stack -- cgit v1.2.3