Rust library to help with creating Alfred 2 Workflows.
Add the following to your Cargo.toml
file:
```toml [dependencies]
alfred = "1.0.1" ```
Licensed under either of * Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) * MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.
Dual-licensed under MIT and APACHE.
Rust 1.0 is out!
Remove #[unsafe_destructor]
, which no longer exists in the latest nightlies.
Switch from IntoCow<'a, str>
to Into<Cow<'a, str>>
.
This is technically a breaking change, but it is unlikely to affect anyone.
Compatibility with the latest Rust nightly.
Compatibility with the latest Rust nightly.
Switch from std::old_io
to std::io
.
Compatibility with the Rust nightly for 2015-02-21.
Compatibility with the Rust 1.0 Alpha release.