mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Use 2018 edition
This commit is contained in:
parent
1cc37a1eda
commit
9c3d6921d0
3 changed files with 3 additions and 2 deletions
|
|
@ -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>",
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,4 +35,4 @@ extern crate rand_os;
|
||||||
|
|
||||||
mod x25519;
|
mod x25519;
|
||||||
|
|
||||||
pub use x25519::*;
|
pub use crate::x25519::*;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue