Skip to content

Commit

Permalink
io_impl
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Oct 27, 2023
1 parent 9fbfc26 commit 78afc62
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 52 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ authors = ["Sergey Shandar"]
[dependencies]
libc = "0.2.149"
io-trait = "0.1.1"
io-impl = "0.1.0"

[dev-dependencies]
wasm-bindgen-test = "0.3.37"
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ mod file_table;
mod io;
mod level_storage;
mod real_async_io;
mod real_io;
mod sha224;
mod sigma32;
mod state;
Expand All @@ -34,4 +33,3 @@ mod static_assert;
mod virtual_io;

pub use app::run;
pub use real_io::RealIo;
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use blockset::{run, RealIo};
use blockset::run;
use io_impl::RealIo;

fn main() -> Result<(), String> {
run(&RealIo::default())
Expand Down
49 changes: 0 additions & 49 deletions src/real_io.rs

This file was deleted.

0 comments on commit 78afc62

Please sign in to comment.