boitalettres/doc/draft.md

29 lines
739 B
Markdown
Raw Normal View History

2022-05-10 15:42:56 +00:00
# Just Enough Doc
## Run `simple` example
2022-05-10 15:42:56 +00:00
This example is meant to show basic service-based IMAP server with boitalettres library.
- [Source code](../examples/simple.rs)
```shell
2022-05-19 08:18:25 +00:00
$ export RUST_LOG="info,simple=trace,boitalettres=trace"
$ export RUSTFLAGS="--cfg tokio_unstable"
2022-05-10 15:42:56 +00:00
$ cargo run --example simple
```
- [Basic python testing script](../scripts/test_imap.py)
```shell
$ python scripts/test_imap.py
```
## Notes
- The library use the `tracing` library for logging, a basic setup is shown in the `simple` example with the `tracing-subscriber` crate.
2022-05-10 15:42:56 +00:00
## References
- [`imap-codec`](https://docs.rs/imap-codec): IMAP protocol model+encoder/decoder
- [`tower`](https://docs.rs/tower): Service-based request handling library