Skip to content

Commit

Permalink
Merge pull request #49 from dalek-cryptography/rust-2018
Browse files Browse the repository at this point in the history
Use 2018 edition
  • Loading branch information
hdevalence committed Oct 24, 2019
2 parents 1cc37a1 + 9c3d692 commit 7af85b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
@@ -1,5 +1,6 @@
[package]
name = "x25519-dalek"
edition = "2018"
version = "0.5.2"
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>",
Expand Down
2 changes: 1 addition & 1 deletion benches/x25519.rs
Expand Up @@ -19,7 +19,7 @@ extern crate x25519_dalek;

use criterion::Criterion;

use curve25519_dalek::montgomery::MontgomeryPoint;


use rand_os::OsRng;

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -35,4 +35,4 @@ extern crate rand_os;

mod x25519;

pub use x25519::*;
pub use crate::x25519::*;

0 comments on commit 7af85b8

Please sign in to comment.