Skip to content

Commit 96b0187

Browse files
committed
rust 2018 paths everywhere
1 parent 22226ea commit 96b0187

24 files changed

+117
-370
lines changed

Cargo.lock

Lines changed: 6 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,16 @@ failure = "0.1.3"
2929
keyring = { version = "0.6.1", optional = true }
3030
reqwest = { version = "0.9.5", optional = true }
3131
rpassword = "2.1.0"
32-
serde_derive = "1.0.81"
3332
serde_json = "1.0.33"
3433
sha2 = "0.8.0"
35-
structopt = "0.2.13"
34+
structopt = "0.2.14"
3635
target_info = "0.1.0"
3736
toml = "0.4.10"
3837
zip = "0.5.0"
39-
serde = "1.0.81"
40-
tar = { version = "0.4.20", optional = true }
41-
libflate = { version = "0.1.19", optional = true }
38+
serde = { version = "1.0.82", features = ["derive"] }
4239
human-panic = { version = "1.0.1", optional = true }
4340
regex = "1.1.0"
44-
indicatif = "0.10.3"
41+
indicatif = "0.11.0"
4542
atty = "0.2.11"
4643
tempfile = "3.0.5"
4744
goblin = { version = "0.0.19", optional = true }
@@ -63,9 +60,6 @@ log = ["pretty_env_logger"]
6360
# This will make rewquest use a statically linked version of openssl
6461
musl = ["openssl"]
6562

66-
# sdists can be created, but they are currently useless (#2)
67-
sdist = ["tar", "libflate"]
68-
6963
[workspace]
7064
members = [
7165
"get-fourtytwo",

Readme.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ For pyo3 and rust-cpython, pyo3-pack can only build packages for installed pytho
5757

5858
Cffi wheels are compatible with all python versions, but they need to have `cffi` installed for the python used for building (`pip install cffi`).
5959

60-
Until [eqrion/cbdingen#203](https://github.com/eqrion/cbindgen/issues/203) is resolved, you also need cbindgen 0.6.4 as build dependency and a build script that writes c headers to a file called `target/header.h`:
60+
Until [eqrion/cbdingen#203](https://github.com/eqrion/cbindgen/issues/203) is resolved, you also need cbindgen 0.6.4 as build dependency and a build script that writes c headers to a file called `target/header.h` (use `extern crate cbindgen` for rust 2015 Crates):
6161

6262
```rust
63-
extern crate cbindgen;
64-
63+
use cbindgen;
6564
use std::env;
6665
use std::path::Path;
6766

0 commit comments

Comments
 (0)