Skip to content

Commit

Permalink
Use tilde dependency requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
yoanlcq committed Dec 29, 2017
1 parent b8f090e commit 855bc9b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.9.0" # remember to update html_root_url in src/lib.rs
version = "0.9.1" # remember to update html_root_url in src/lib.rs
authors = ["Yoan Lecoq <yoanlecoq.io@gmail.com>"]
description = "Generic 2D-3D math swiss army knife for game engines, with SIMD support and focus on convenience."
documentation = "https://docs.rs/vek"
Expand Down Expand Up @@ -46,15 +46,15 @@ uvw = []
repr_simd = []

[build-dependencies]
rustc_version = "0.2.1"
rustc_version = "~0.2.1"

[dependencies]
approx = "0.1.1"
num-traits = "0.1.40"
num-integer = "0.1.35"
static_assertions = "0.2.5"
image = { version = "0.17", optional = true, default-features = false }
serde = { version = "1.0.24", optional = true, features = ["derive"] }
approx = "~0.1.1"
num-traits = "~0.1.40"
num-integer = "~0.1.35"
static_assertions = "~0.2.5"
image = { version = "~0.17", optional = true, default-features = false }
serde = { version = "~1.0.24", optional = true, features = ["derive"] }
# clippy = { version = "0.0.166", optional = true }

[target.'cfg(any(target_arch="x86", target_arch="x86_64"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#![cfg_attr(not(test), no_std)]
#![doc(
test(attr(deny(warnings))),
html_root_url = "https://docs.rs/vek/0.9.0",
html_root_url = "https://docs.rs/vek/0.9.1",
//html_logo_url = "https://yoanlcq.github.io/vek/logo.png",
//html_favicon_url = "https://yoanlcq.github.io/vek/favicon.ico",
)]
Expand Down

0 comments on commit 855bc9b

Please sign in to comment.