aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* feat(response): always allow explicit mime specificationv0.1.17Fuwn2022-07-092-111/+9
|
* refactor(router): remove useless clonesFuwn2022-06-131-2/+1
|
* feat(router): allow access to client certsFuwn2022-06-132-24/+55
| | | | Pretty happy to finally get this one over with...
* refactor: fix qualificationsFuwn2022-06-131-10/+4
|
* docs(cargo): bump version0.1.15Fuwn2022-06-011-84/+8
| | | | | Also, use the doc attribute to include the README automatically! Wish I knew about this earlier!
* refactor(router): move router to seperate fileFuwn2022-06-012-750/+771
|
* fix(lib.rs): response content no leading whitespaceFuwn2022-06-011-1/+1
|
* docs(cargo): bump version0.1.14Fuwn2022-04-201-3/+3
|
* fix(handle): response spacingFuwn2022-04-201-3/+3
|
* docs(cargo): bump version0.1.13Fuwn2022-04-151-3/+3
|
* feat(handler): expose handler typesFuwn2022-04-151-1/+1
|
* feat: handle bad requestFuwn2022-04-141-19/+29
|
* feat(handle): return bad requestFuwn2022-04-141-1/+15
|
* docs(cargo): bump version to 0.1.120.1.12Fuwn2022-04-071-3/+3
|
* fix: trailing for fixFuwn2022-04-071-1/+5
|
* fix: try to fix path0.1.11Fuwn2022-04-071-4/+7
|
* docs(cargo): bump version0.1.10Fuwn2022-04-071-3/+3
|
* feat(router): allow path fixingFuwn2022-04-071-1/+22
|
* docs(readme): link to example gemini capsuleFuwn2022-04-061-0/+5
|
* docs(cargo): bump to 0.1.90.1.9Fuwn2022-04-031-4/+5
|
* feat(refactor): no late init contentFuwn2022-04-031-18/+14
|
* feat(router): allow multiple headers and footersFuwn2022-04-031-33/+49
|
* docs(cargo): bump version to 0.1.80.1.8Fuwn2022-04-021-2/+6
|
* feat(router): stateful modules!Fuwn2022-04-023-6/+158
|
* docs(readme): add modules and capsules sectionFuwn2022-04-011-1/+16
|
* fix(router): conditional feature args0.1.7Fuwn2022-03-311-2/+4
|
* feat(cargo): bump version0.1.6Fuwn2022-03-311-2/+2
|
* feat(features): auto-deduce-mimeFuwn2022-03-312-1/+120
|
* fix(router): use different certificate fileFuwn2022-03-301-24/+24
|
* feat(router): specify custom port0.1.4Fuwn2022-03-301-4/+22
|
* feat(cargo): bump version0.1.3Fuwn2022-03-271-3/+3
|
* feat(handler): more fnmutFuwn2022-03-272-33/+48
|
* feat(handler): fnmut partialFuwn2022-03-272-15/+11
|
* feat(pre/post_route_callback): fnmut closureFuwn2022-03-272-22/+33
|
* feat(error_handle): fnmut closureFuwn2022-03-272-11/+19
|
* docs: add missing dependencyFuwn2022-03-271-0/+1
|
* docs: extend0.1.2Fuwn2022-03-273-0/+61
|
* feat(router): set charset and languageFuwn2022-03-271-1/+39
|
* feat(router): logging optionsFuwn2022-03-271-1/+38
|
* feat(response): respond with fileFuwn2022-03-273-7/+20
|
* refactor(tokio): reexport mainFuwn2022-03-271-0/+1
|
* refactor(handler): move handlersFuwn2022-03-272-32/+39
|
* feat(response): add remaining responses (redirect)Fuwn2022-03-273-40/+12
|
* feat(response): implement many more responsesFuwn2022-03-272-7/+67
|
* refactor(router): more generic errorsFuwn2022-03-271-13/+13
|
* refactor(run): generic errorsFuwn2022-03-271-5/+7
|
* feat(router): async!Fuwn2022-03-272-17/+28
|
* feat(router): modulesFuwn2022-03-271-5/+30
|
* refactor(mount): context is now structFuwn2022-03-262-22/+90
|
* feat(mount): use a sophisticated route matcherFuwn2022-03-261-145/+60
| | | | | | | | | | | | | | The [`matchit`](https://github.com/ibraheemdev/matchit) crate is a real lifesaver... Before this commit, I had manually implemented a dynamic pattern matcher for routes (which only supported one pattern per route) that worked; just not very well. While searching for a way to implement multiple patterns per route, I landed upon two crates: [`matchit`](https://github.com/ibraheemdev/matchit) and [`urlmatch`](https://github.com/SergeiMinaev/urlmatch). Ultimately, I settled with `matchit` because it seemed a lot more mature and supported nearly everything which I was looked for!