This commit is contained in:
Aode (lion) 2022-03-07 15:53:06 -06:00
parent a3013dfa40
commit be7c05060f
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[package]
name = "local-executor"
name = "bachata"
version = "0.1.0"
edition = "2021"

View file

@ -1,4 +1,4 @@
use local_executor::{Executor, JoinError};
use bachata::{Executor, JoinError};
fn main() -> Result<(), JoinError> {
Executor::new().block_on(async move {

View file

@ -1,8 +1,8 @@
use bachata::Executor;
use foxtrot::{
io::{Async, Nonblocking, Readiness},
net::TcpListener,
};
use local_executor::Executor;
use read_write_buf::ReadWriteBuf;
fn main() -> Result<(), Box<dyn std::error::Error>> {