File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 40
40
//!
41
41
//! [Jitterentropy]: http://www.chronox.de/jent.html
42
42
43
+ #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ,
44
+ html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
45
+ html_root_url = "https://rust-random.github.io/rand/" ) ]
46
+
47
+ #![ deny( missing_docs) ]
48
+ #![ deny( missing_debug_implementations) ]
49
+ #![ doc( test( attr( allow( unused_variables) , deny( warnings) ) ) ) ]
50
+
43
51
// Note: the C implementation of `Jitterentropy` relies on being compiled
44
52
// without optimizations. This implementation goes through lengths to make the
45
53
// compiler not optimize out code which does influence timing jitter, but is
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 Developers of the Rand project.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5
+ // <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6
+ // option. This file may not be copied, modified, or distributed
7
+ // except according to those terms.
8
+
9
+ // Crate to test WASM with the `wasm-bindgen` lib.
10
+
11
+ #![ doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png" ) ]
12
+
1
13
extern crate rand;
2
14
extern crate wasm_bindgen;
3
15
extern crate wasm_bindgen_test;
You can’t perform that action at this time.
0 commit comments