From 2ec3cabda10b533bf57856e02730f670d2a39b98 Mon Sep 17 00:00:00 2001 From: pravic Date: Tue, 7 Feb 2017 01:10:00 +0300 Subject: [PATCH] fix Cargo.toml: freeze dependency constraints --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 33d2231..af2a78a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,12 +19,12 @@ name = "sciter" crate-type = ["rlib"] [dependencies] -libc = "*" -lazy_static = "*" +libc = "0.2" +lazy_static = "0.2" [target.x86_64-apple-darwin.dependencies] -objc = "*" -objc-foundation = "*" +objc = "0.2" +objc-foundation = "0.1" [[example]] name = "first"