Merge pull request #49 from dalek-cryptography/rust-2018

Use 2018 edition
This commit is contained in:
Henry de Valence 2019-10-24 15:57:41 -07:00 committed by GitHub
commit 7af85b8e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,6 @@
[package]
name = "x25519-dalek"
edition = "2018"
version = "0.5.2"
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>",

View file

@ -19,7 +19,7 @@ extern crate x25519_dalek;
use criterion::Criterion;
use curve25519_dalek::montgomery::MontgomeryPoint;
use rand_os::OsRng;

View file

@ -35,4 +35,4 @@ extern crate rand_os;
mod x25519;
pub use x25519::*;
pub use crate::x25519::*;