Use 2018 edition

This commit is contained in:
Henry de Valence 2019-10-24 15:44:57 -07:00
parent 1cc37a1eda
commit 9c3d6921d0
3 changed files with 3 additions and 2 deletions

View file

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

View file

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

View file

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