aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Höppner2016-02-25 07:29:43 +0100
committerTill Höppner2016-02-25 07:29:43 +0100
commit58fdc5c7566323427d62754b8c1fd4b7b30a92e6 (patch)
treeb58bd7f23aa08f393436285dbaaab1e182fefc84
parentcd15d4f8de1ee9bc6d00fb0a08659ca2c74d2e2d (diff)
downloadilc-58fdc5c7566323427d62754b8c1fd4b7b30a92e6.tar.gz
ilc-58fdc5c7566323427d62754b8c1fd4b7b30a92e6.tar.xz
ilc-58fdc5c7566323427d62754b8c1fd4b7b30a92e6.zip
Remove bootstrapping path depsv0.2.0-alpha
-rw-r--r--Cargo.toml3
-rw-r--r--base/src/dummy.rs (renamed from base/src/mod.rs)21
-rw-r--r--base/src/lib.rs5
-rw-r--r--cli/Cargo.toml12
-rw-r--r--formats/energymech/Cargo.toml3
-rw-r--r--formats/weechat/Cargo.toml3
-rw-r--r--ops/Cargo.toml3
7 files changed, 11 insertions, 39 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1b06b77..0178b8b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"