Skip to content

Commit

Permalink
Fixes for Compilation on latest rust ver (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwample authored May 7, 2024
1 parent caf7adb commit bcf19d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/o5/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#![doc = include_str!("../README.md")]
// unexpected_cfgs are used to disable incomplete / WIP features and tests. This is
// not an error for this library.
#![allow(unexpected_cfgs)]

mod framing;
// mod handshake;
Expand Down
3 changes: 3 additions & 0 deletions crates/obfs4/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#![doc = include_str!("../README.md")]
// unexpected_cfgs are used to disable incomplete / WIP features and tests. This is
// not an error for this library.
#![allow(unexpected_cfgs)]

// #![feature(trait_alias)]

Expand Down

0 comments on commit bcf19d0

Please sign in to comment.