Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello I was thinking that being able to do something like this would be comfortable: ```rust #[get("/something/:path")] fn something(&self, path: String) -> Result { if &path != "stuff" { return...
The thing can have a destructor (because the closure might capture things that have destructor themselves) and not running it might leak resources.
We have a crate (spirit-log) for configuring the „classical“ log framework. There's also [slog](https://crates.io/crates/slog) and it would be great if we could support that one too. As slog doesn't really...
The CfgHelper is (hopefully) composable from sub-config sections, with adequate attribute annotations (supplying the action and name). This makes it a candidate for custom derive, which could provide the relevant...
It is executed right away. However, internally, it delegates to storing it, which is a bit stupid. Some way to work around that needs to be done.
So things like `Vec` work correctly.
Deep below spirit, there's clap and it allows for generating completions for various shells: https://docs.rs/clap/2.32.0/clap/struct.App.html#method.gen_completions. It would be nice if this functionality got routed through all the levels and made...
In case we run on top of tokio, it should be possible to do all our work as part of the runtime and not start a dedicated thread just to...
The first time configuration is loaded, it is before switching the working directory (because the config contains the directory to switch to). The next time it is after the switch....
Should logging create needed directories to log into if they don't exist?