diff --git a/Cargo.lock b/Cargo.lock index ce2fa28742..024da266a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -832,7 +832,7 @@ name = "euc" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", ] [[package]] @@ -3025,7 +3025,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "vek" -version = "0.9.8" +version = "0.9.9" +source = "git+https://github.com/timokoesters/vek#43daee981ef206ce5d8f5933cbb7c0b00b5d5c11" dependencies = [ "approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3054,7 +3055,7 @@ dependencies = [ "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", "uvth 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", "veloren-common 0.3.0", ] @@ -3083,7 +3084,7 @@ dependencies = [ "specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", "specs-idvs 0.1.0 (git+https://gitlab.com/veloren/specs-idvs.git)", "sphynx 0.1.0 (git+https://gitlab.com/veloren/sphynx.git?rev=11cdc7422568aaabd376c87242a60f636e68b40d)", - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", ] [[package]] @@ -3102,7 +3103,7 @@ dependencies = [ "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", "uvth 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", "veloren-common 0.3.0", "veloren-world 0.3.0", ] @@ -3154,7 +3155,7 @@ dependencies = [ "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "simplelog 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", "veloren-client 0.3.0", "veloren-common 0.3.0", "veloren-server 0.3.0", @@ -3171,7 +3172,7 @@ dependencies = [ "noise 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "vek 0.9.8", + "vek 0.9.9 (git+https://github.com/timokoesters/vek)", "veloren-common 0.3.0", "zerocopy 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -3721,6 +3722,7 @@ dependencies = [ "checksum utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" "checksum uvth 3.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e59a167890d173eb0fcd7a1b99b84dc05c521ae8d76599130b8e19bef287abbf" "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" +"checksum vek 0.9.9 (git+https://github.com/timokoesters/vek)" = "" "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e" diff --git a/Cargo.toml b/Cargo.toml index 1b51b40d34..31307b7c04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,4 +19,4 @@ codegen-units = 1 lto = true [patch.crates-io] -vek = { path = "../vek" } +vek = { git = "https://github.com/timokoesters/vek" } diff --git a/client/Cargo.toml b/client/Cargo.toml index 02736a0e51..3a86842939 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -11,5 +11,5 @@ uvth = "3.1.1" num_cpus = "1.10.1" log = "0.4.8" specs = "0.14.2" -vek = { path = "../../vek", features=["serde"] } +vek = { version = "0.9.9", features = ["serde"] } hashbrown = { version = "0.5.0", features = ["serde", "nightly"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index f26fde7800..2f6be96e4b 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -9,7 +9,7 @@ sphynx = { git = "https://gitlab.com/veloren/sphynx.git", features = ["serde1"], specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git" } specs = { version = "0.14.2", features = ["serde", "nightly"] } -vek = { version = "0.9.8", features = ["serde"] } +vek = { version = "0.9.9", features = ["serde"] } dot_vox = "4.0.0" image = "0.22.0" mio = "0.6.19" diff --git a/server/Cargo.toml b/server/Cargo.toml index 2affc8e118..ee4bc0f604 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -10,7 +10,7 @@ world = { package = "veloren-world", path = "../world" } log = "0.4.8" specs = "0.14.2" -vek = "0.9.8" +vek = "0.9.9" uvth = "3.1.1" lazy_static = "1.3.0" scan_fmt = "0.2.3" diff --git a/voxygen/Cargo.toml b/voxygen/Cargo.toml index 92f61204fa..67f9008899 100644 --- a/voxygen/Cargo.toml +++ b/voxygen/Cargo.toml @@ -30,7 +30,7 @@ euc = "0.3.0" specs = "0.14.2" # Mathematics -vek = { path = "../../vek", features=["serde"] } +vek = { version = "0.9.8", features = ["serde"] } # discord discord-rpc-sdk = { git = "https://github.com/Songtronix/rust-discord-rpc.git", optional = true } diff --git a/world/Cargo.toml b/world/Cargo.toml index 4c27a4dadf..773a86cb3b 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] common = { package = "veloren-common", path = "../common" } -vek = "0.9.8" +vek = "0.9.9" noise = "0.5.1" hashbrown = { version = "0.5.0", features = ["serde", "nightly"] } lazy_static = "1.3.0"