rust_runnables

Crates.iorust_runnables
lib.rsrust_runnables
version0.2.0
sourcesrc
created_at2016-05-01 02:20:57.222484
updated_at2016-07-31 21:21:58.079311
descriptionRust traits that mimic the Runnable and Callable interfaces in Java.
homepagehttps://github.com/azriel91/rust_runnables
repositoryhttps://github.com/azriel91/rust_runnables
max_upload_size
id4938
size5,564
Azriel Hoh (azriel91)

documentation

README

Rust Runnables

Build Status Crates.io

Rust traits that mimic the Runnable and Callable<T> interfaces in Java.

Usage

Please see src/lib.rs for code examples.

Building

  1. Make sure you have Rust (stable) and Cargo installed

  2. Run the following command:

    cargo build && cargo test
    

Releasing

  1. Make sure the last build is successful

  2. Tag the commit

    git tag 0.0.1  # see Cargo.toml
    
  3. Publish the package

    Make sure you have publishing permissions, and have logged in to Cargo, then run:

    cargo publish
    
  4. Update Cargo.toml to the next version

License

Licensed under Apache License, Version 2.0

Commit count: 5

cargo fmt