-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update authors, bump version, and streamline Rocket.toml config
Added a new author entry and updated existing author emails in various configuration files. Bumped the project version from 1.0.2 to 2.0.0. Refactored Rocket.toml to streamline configuration for different build profiles.
- Loading branch information
Showing
4 changed files
with
17 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "joel-bot" | ||
version = "1.0.2" | ||
version = "2.0.0" | ||
authors = [ | ||
"Fabian Eriksson <[email protected]>", | ||
"Joakim Anell <[email protected]>", | ||
"Simon Olander <[email protected]>", | ||
"Petter Salminen <[email protected]>", | ||
"Petter Salminen <[email protected]>", | ||
"Eric von Knorring <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,16 @@ | ||
[development] | ||
address = "localhost" | ||
port = 8000 | ||
keep_alive = 5 | ||
read_timeout = 5 | ||
write_timeout = 5 | ||
log = "normal" | ||
limits = { forms = 32768 } | ||
|
||
[staging] | ||
## defaults for _all_ profiles | ||
[default] | ||
address = "0.0.0.0" | ||
limits = { form = "64 kB", json = "10 MiB" } | ||
|
||
## set only when compiled in debug mode, i.e, `cargo build` | ||
[debug] | ||
port = 8000 | ||
keep_alive = 5 | ||
read_timeout = 5 | ||
write_timeout = 5 | ||
log = "normal" | ||
limits = { forms = 32768 } | ||
## only the `json` key from `default` will be overridden; `form` will remain | ||
limits = { json = "10MiB" } | ||
|
||
[production] | ||
address = "0.0.0.0" | ||
|
||
## set only when compiled in release mode, i.e, `cargo build --release` | ||
[release] | ||
port = 80 | ||
keep_alive = 5 | ||
read_timeout = 5 | ||
write_timeout = 5 | ||
log = "critical" | ||
limits = { forms = 32768 } | ||
ip_header = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters