diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ef3f7ee --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + + + +## [Unreleased] + +## [0.1.0] - 2022-06-17 +### Default commands +- help + +### Dynamic plugins loader +You can create custom commands and events (events executed if client connected or send message) + +### Cli +You set custom host and port `./servers --host 0.0.0.0 --port 9999` + +Show cli help `./servers --help` + + +[Unreleased]: https://github.com/MedzikUser/servers/compare/v0.1.0...HEAD +[0.1.0]: https://github.com/MedzikUser/servers/commits/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 77085cd..c6435ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,6 +6,12 @@ name = "servers" version = "0.1.0" edition = "2021" +[profile.release] +lto = true +panic = 'abort' +opt-level = 'z' +codegen-units = 1 + [dependencies] anyhow = "1.0.57" async-trait = "0.1.56"