diff options
-rw-r--r-- | Cargo.toml | 3 | ||||
-rw-r--r-- | base/src/dummy.rs (renamed from base/src/mod.rs) | 21 | ||||
-rw-r--r-- | base/src/lib.rs | 5 | ||||
-rw-r--r-- | cli/Cargo.toml | 12 | ||||
-rw-r--r-- | formats/energymech/Cargo.toml | 3 | ||||
-rw-r--r-- | formats/weechat/Cargo.toml | 3 | ||||
-rw-r--r-- | ops/Cargo.toml | 3 |
7 files changed, 11 insertions, 39 deletions
@@ -12,8 +12,7 @@ name = "ilc" doc = false [dependencies] -# ilc-cli = "*" -ilc-cli = { path = "cli" } +ilc-cli = "0.1.0" [profile.release] debug = false diff --git a/base/src/mod.rs b/base/src/dummy.rs index 5374598..9317c4e 100644 --- a/base/src/mod.rs +++ b/base/src/dummy.rs @@ -12,32 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. -//! Traits and structs for conversion between various formats. -//! As the source format may not provide the same information as the -//! target format, all formats must allow for omittable information. - use std::iter; -use std::io::{BufRead, Write}; -use std::borrow::Cow; +use std::io::BufRead; use event::Event; use context::Context; -pub use self::energymech::Energymech; -pub use self::weechat::Weechat; -pub use self::binary::Binary; -pub use self::msgpack::Msgpack; - -mod energymech; -mod weechat; -// pub mod irssi; -mod binary; -mod msgpack; - - pub struct Dummy; -impl Decode for Dummy { +impl ::Decode for Dummy { fn decode<'a>(&'a mut self, _context: &'a Context, _input: &'a mut BufRead) diff --git a/base/src/lib.rs b/base/src/lib.rs index 9e96478..44f6110 100644 --- a/base/src/lib.rs +++ b/base/src/lib.rs @@ -17,15 +17,12 @@ extern crate chrono; #[macro_use] extern crate log; extern crate rustc_serialize; -// extern crate bincode; -// extern crate rmp; -// extern crate rmp_serialize as msgpack; pub mod event; -// pub mod format; pub mod context; pub mod error; pub mod format; +pub mod dummy; use std::io::{BufRead, Write}; diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b5bf1d5..62b47b9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -16,11 +16,7 @@ clap = "2.1.2" chrono = "0.2.19" env_logger = "0.3.2" glob = "0.2.10" -# ilc-base = "*" -ilc-base = { path = "../base" } -# ilc-ops = "*" -ilc-ops = { path = "../ops" } -# ilc-format-weechat = { optional = true, version = "*" } -ilc-format-weechat = { optional = true, path = "../formats/weechat" } -# ilc-format-energymech = { optional = true, version = "*" } -ilc-format-energymech = { optional = true, path = "../formats/energymech" } +ilc-base = "0.1.0" +ilc-ops = "0.1.0" +ilc-format-weechat = { optional = true, version = "0.1.0" } +ilc-format-energymech = { optional = true, version = "0.1.0" } diff --git a/formats/energymech/Cargo.toml b/formats/energymech/Cargo.toml index 3c6fe80..c450b02 100644 --- a/formats/energymech/Cargo.toml +++ b/formats/energymech/Cargo.toml @@ -10,5 +10,4 @@ authors = ["Till Höppner <till@hoeppner.ws>"] [dependencies] log = "0.3.5" chrono = "0.2.19" -# ilc-base = "*" -ilc-base = { path = "../../base" } +ilc-base = "0.1.0" diff --git a/formats/weechat/Cargo.toml b/formats/weechat/Cargo.toml index 10d3ccb..2a7af9e 100644 --- a/formats/weechat/Cargo.toml +++ b/formats/weechat/Cargo.toml @@ -10,5 +10,4 @@ authors = ["Till Höppner <till@hoeppner.ws>"] [dependencies] log = "0.3.5" chrono = "0.2.19" -# ilc-base = "*" -ilc-base = { path = "../../base" } +ilc-base = "0.1.0" diff --git a/ops/Cargo.toml b/ops/Cargo.toml index ce52481..adcbb34 100644 --- a/ops/Cargo.toml +++ b/ops/Cargo.toml @@ -8,6 +8,5 @@ repository = "https://github.com/tilpner/ilc" authors = ["Till Höppner <till@hoeppner.ws>"] [dependencies] -# ilc-base = "*" -ilc-base = { path = "../base" } +ilc-base = "0.1.0" blist = "0.0.4" |