chore(release): v0.1.0

This commit is contained in:
MedzikUser 2022-06-17 14:15:09 +02:00
parent f0c2d88764
commit 6330c4758d
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
2 changed files with 32 additions and 0 deletions

26
CHANGELOG.md Normal file
View File

@ -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/).
<!-- next-header -->
## [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`
<!-- next-url -->
[Unreleased]: https://github.com/MedzikUser/servers/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/MedzikUser/servers/commits/v0.1.0

View File

@ -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"