Skip to content

Commit

Permalink
Move main.rs out of this project.
Browse files Browse the repository at this point in the history
Create `lib.rs`.
  • Loading branch information
Twisol committed Jan 1, 2015
1 parent f2508ad commit 1efa773
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 138 deletions.
1 change: 1 addition & 0 deletions src/demux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pub trait ChannelHandler {
impl ChannelHandler for () {}


#[deriving(Copy)]
pub struct TelnetDemuxState {
pub qstate: [QState, ..256],
pub active_channel: Option<u8>,
Expand Down
9 changes: 9 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#![feature(slicing_syntax, globs, unboxed_closures)]

pub mod parser;
pub mod dispatch;
pub mod demux;
pub mod registry;

pub mod qstate;
pub mod iac;
138 changes: 0 additions & 138 deletions src/main.rs

This file was deleted.

0 comments on commit 1efa773

Please sign in to comment.