Browse Source

Rename package and fix version numbers

Getty Ritter 5 years ago
parent
commit
c39bc7838d
2 changed files with 21 additions and 21 deletions
  1. 13 13
      Cargo.lock
  2. 8 8
      Cargo.toml

+ 13 - 13
Cargo.lock

@@ -61,6 +61,19 @@ dependencies = [
  "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
+[[package]]
+name = "knurling"
+version = "0.1.0"
+dependencies = [
+ "cairo-rs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "cairo-sys-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
+ "pango 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "pangocairo 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
+ "x11 2.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
 [[package]]
 name = "lazy_static"
 version = "1.3.0"
@@ -130,19 +143,6 @@ name = "pkg-config"
 version = "0.3.14"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 
-[[package]]
-name = "rbar"
-version = "0.1.0"
-dependencies = [
- "cairo-rs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "cairo-sys-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
- "pango 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "pangocairo 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
- "x11 2.18.1 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
 [[package]]
 name = "redox_syscall"
 version = "0.1.51"

+ 8 - 8
Cargo.toml

@@ -1,20 +1,20 @@
 [package]
-name = "rbar"
+name = "knurling"
 version = "0.1.0"
 authors = ["Getty Ritter <samothes@infinitenegativeutility.com>"]
 edition = "2018"
 
 [dependencies]
-cairo-rs = "*"
-pango = "*"
-pangocairo = "*"
-time = "*"
-libc = "*"
+cairo-rs = "0.6"
+pango = "0.6"
+pangocairo = "0.7"
+time = "0.1"
+libc = "0.2"
 
 [dependencies.cairo-sys-rs]
-version = "*"
+version = "0.8"
 features = ["xlib"]
 
 [dependencies.x11]
-version = "*"
+version = "2.18"
 features = ["xlib", "xinput"]