aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Höppner2016-02-25 18:50:23 +0100
committerTill Höppner2016-02-25 19:06:20 +0100
commit38c2f2fee156b188b08f632568b0ce8b444f2850 (patch)
tree71e1ccceacffe2e6515d8781693f1d8b4b670feb
parent11c4fdc0feb9261cc7222c7ed9b391219c923784 (diff)
downloadilc-38c2f2fee156b188b08f632568b0ce8b444f2850.tar.gz
ilc-38c2f2fee156b188b08f632568b0ce8b444f2850.tar.xz
ilc-38c2f2fee156b188b08f632568b0ce8b444f2850.zip
Fix pub uses
-rw-r--r--Cargo.toml6
-rw-r--r--base/Cargo.toml2
-rw-r--r--base/src/lib.rs1
-rw-r--r--src/lib.rs12
4 files changed, 10 insertions, 11 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d0a8e1d..5c03dac 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ description = "IRC log converter/collector/cruncher"
license = "Apache-2.0"
name = "ilc"
repository = "https://github.com/tilpner/ilc"
-version = "0.2.1"
+version = "0.2.2"
[[bin]]
name = "ilc"
@@ -18,7 +18,7 @@ ilc-format-weechat = "0.1.0"
ilc-format-energymech = "0.1.0"
[profile.release]
-debug = true
+debug = false
debug-assertions = false
-# lto = true
+lto = true
opt-level = 3
diff --git a/base/Cargo.toml b/base/Cargo.toml
index 0f124bf..541de02 100644
--- a/base/Cargo.toml
+++ b/base/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ilc-base"
-version = "0.1.0"
+version = "0.1.2"
description = "IRC log converter/collector/cruncher"
homepage = "https://github.com/tilpner/ilc"
license = "Apache-2.0"
diff --git a/base/src/lib.rs b/base/src/lib.rs
index 44f6110..1f56dcd 100644
--- a/base/src/lib.rs
+++ b/base/src/lib.rs
@@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#![feature(slice_patterns)]
extern crate chrono;
#[macro_use]
extern crate log;
diff --git a/src/lib.rs b/src/lib.rs
index 8f1a914..724e9f9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -10,9 +10,9 @@ pub use ilc_ops::{convert, dedup, freq, parse, seen, sort};
pub use ilc_cli::{decoder, encoder, force_decoder, force_encoder, open_files};
-pub use convert::convert;
-pub use dedup::dedup;
-pub use freq::freq;
-pub use parse::parse;
-pub use seen::seen;
-pub use sort::sort;
+pub use ilc_ops::convert::convert;
+pub use ilc_ops::dedup::dedup;
+pub use ilc_ops::freq::freq;
+pub use ilc_ops::parse::parse;
+pub use ilc_ops::seen::seen;
+pub use ilc_ops::sort::sort;