1[package] 2 3name = "triable" 4version = "0.1.2" 5authors = ["Simon Sapin <simon.sapin@exyr.org>"] 6license = "MIT" 7repository = "https://github.com/SimonSapin/rust-std-candidates" 8description = """ 9Extends the `try!` macro to types other than `std::result::Result` by introducing a `Triable` trait. 10""" 11 12 13[lib] 14name = "triable" 15path = "lib.rs" 16doctest = false 17