91 releases

0.1.92 May 5, 2024
0.1.87 Mar 10, 2024
0.1.74 Dec 29, 2023
0.1.57 Nov 29, 2023
0.1.19 Jul 21, 2023

#652 in Development tools

Download history 662/week @ 2024-01-22 221/week @ 2024-01-29 734/week @ 2024-02-05 674/week @ 2024-02-12 837/week @ 2024-02-19 667/week @ 2024-02-26 1294/week @ 2024-03-04 335/week @ 2024-03-11 436/week @ 2024-03-18 713/week @ 2024-03-25 2466/week @ 2024-04-01 612/week @ 2024-04-08 577/week @ 2024-04-15 662/week @ 2024-04-22 688/week @ 2024-04-29 691/week @ 2024-05-06

2,662 downloads per month
Used in 5 crates

GPL-2.0+

140KB
4K SLoC

Rust wrapper for Breezy

This crate contains a rust wrapper for the Breezy API, which is written in Python.

Breezy itself is being ported to Rust, but until that port has completed, this crate allows access to the most important Breezy APIs via Rust.

The Rust API here will follow the Breezy 4.0 Rust API as much as possible, to make porting easier.


lib.rs:

This crate contains a rust wrapper for the Breezy API, which is written in Python.

Breezy itself is being ported to Rust, but until that port has completed, this crate allows access to the most important Breezy APIs via Rust.

The Rust API here will follow the Breezy 4.0 Rust API as much as possible, to make porting easier.

Example

use breezyshim::branch::open as open_branch;
breezyshim::plugin::load_plugins();
let b = open_branch(&"lp:brz".parse().unwrap()).unwrap();
println!("Last revision: {:?}", b.last_revision());

Dependencies

~10–21MB
~329K SLoC