aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Check if it was actually us who joined for the info messageJokler2017-10-171-1/+3
|
* Display possible error when trying to create a connectionJokler2017-10-171-1/+7
| | | | | This can still panic but that should be fixed in the next version of the irc library.
* Fix typoJokler2017-10-161-1/+1
|
* Rewrite run() and add loggingJokler2017-10-161-53/+131
| | | | | | | | | The logger is created in main.rs for now and just logs messages over println. Changes on run() - Added Log Messages - Allow multiple configs which create one IrcServer each - Use tokio-core to keep IrcServers in the main thread
* Adjust formatting with cargo fmtJokler2017-10-141-6/+8
|
* Remove now redundant checkJokler2017-10-131-5/+0
|
* Do not filter out empty StringsJokler2017-10-131-1/+0
| | | | | | This makes the command syntax more strict but allows plugins to recreate the original command by joining the tokens.
* Do not use regex to check for commandsJokler2017-10-131-12/+6
|
* Only spawn a new thread if neededJokler2017-10-111-26/+37
|
* Create plugin_derive to replace the register_plugin macroJokler2017-10-111-5/+5
|
* Add comments to lib.rsJokler2017-10-111-2/+24
|
* Add documentation to the public partsJokler2017-10-111-0/+15
|
* Clear test modules until the irc lib is updatedJokler2017-10-111-17/+0
|
* Use regex to check for commandsJokler2017-10-111-0/+15
|
* Only expose the run functionJokler2017-10-111-7/+1
|
* Add command functionalityJokler2017-10-111-2/+76
|
* Add clippy as an optional build featureJokler2017-10-111-2/+5
|
* Add fixed currency pluginJokler2017-10-111-1/+3
|
* Adjust formatting with cargo fmtv0.1.0Jokler2017-10-041-2/+1
|
* Remove unused nightly featureJokler2017-10-041-1/+0
|
* Initial bot sourceJokler2017-10-041-0/+65