| Crates.io | alfred |
| lib.rs | alfred |
| version | 4.0.2 |
| created_at | 2014-11-20 23:05:11.819566+00 |
| updated_at | 2019-08-27 18:57:35.644914+00 |
| description | A library for writing Alfred workflows. http://www.alfredapp.com |
| homepage | |
| repository | https://github.com/lilyball/alfred-rs |
| max_upload_size | |
| id | 181 |
| size | 79,552 |
Rust library to help with creating Alfred Workflows.
Add the following to your Cargo.toml file:
[dependencies]
alfred = "4.0"
Licensed under either of
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.
Builder.into_json public.Item.to_json public, along with to_json methods on its helper types.Add 2 more functions for reading workflow environment variables.
Update documentation links for crates.io.
Update serde_json to 1.0.
Switch from rustc-serialize to serde_json for our JSON support.
Add new module alfred::env for accessing the Alfred workflow environment
variables.
Moved XML output into its own module alfred::xml and introduced a new module
alfred::json for the new Alfred 3 JSON format.
Updated Item and ItemBuilder with the extended modifier functionality and
support for the QuickLook URL.
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.