From 8e573c5a7a6747dd3f01c3ed97c88a3c5a57d7ec Mon Sep 17 00:00:00 2001 From: Jokler Date: Wed, 1 Nov 2017 17:15:54 +0100 Subject: Add debug logging The log level gets set to debug or info based on the build profile automatically now. Debug messages also print their target to the console. --- Cargo.lock | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 239bad5..8fe0acc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,23 +1,3 @@ -[root] -name = "frippy" -version = "0.2.0" -dependencies = [ - "clippy 0.0.166 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "irc 0.12.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "plugin_derive 0.1.0", - "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "reqwest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode_names 0.1.7 (git+https://github.com/Jokler/unicode_names?branch=update-to-latest-unicode)", -] - [[package]] name = "adler32" version = "1.0.2" @@ -292,6 +272,26 @@ name = "foreign-types" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "frippy" +version = "0.3.0" +dependencies = [ + "clippy 0.0.166 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "irc 0.12.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "plugin_derive 0.1.0", + "regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode_names 0.1.7 (git+https://github.com/Jokler/unicode_names?branch=update-to-latest-unicode)", +] + [[package]] name = "fuchsia-zircon" version = "0.2.1" -- cgit v1.2.3-70-g09d2 From b8c25860ad769a466e7c50bbbb51b653dd55ccfb Mon Sep 17 00:00:00 2001 From: Jokler Date: Thu, 16 Nov 2017 02:51:51 +0100 Subject: Bump version to 0.3.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- configs/config.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 8fe0acc..a721a1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -274,7 +274,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "frippy" -version = "0.3.0" +version = "0.3.1" dependencies = [ "clippy 0.0.166 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 4c6928e..eecfa86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frippy" -version = "0.3.0" +version = "0.3.1" authors = ["Jokler "] repository = "https://github.com/Mavulp/frippy" readme = "README.md" diff --git a/configs/config.toml b/configs/config.toml index 510e1ae..5ad66e2 100644 --- a/configs/config.toml +++ b/configs/config.toml @@ -12,7 +12,7 @@ encoding = "UTF-8" channels = ["#frippy"] umodes = "+B" user_info = "IRC Bot" -version = "frippy v0.3.0" +version = "frippy v0.3.1" source = "https://github.com/Mavulp/frippy" #ping_time = 180 #ping_timeout = 10 -- cgit v1.2.3-70-g09d2