90 releases

0.1.89 Apr 2, 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

#679 in Development tools

Download history 154/week @ 2024-01-04 116/week @ 2024-01-11 379/week @ 2024-01-18 459/week @ 2024-01-25 240/week @ 2024-02-01 756/week @ 2024-02-08 1115/week @ 2024-02-15 641/week @ 2024-02-22 502/week @ 2024-02-29 1264/week @ 2024-03-07 405/week @ 2024-03-14 647/week @ 2024-03-21 1112/week @ 2024-03-28 2027/week @ 2024-04-04 593/week @ 2024-04-11 613/week @ 2024-04-18

4,369 downloads per month
Used in 5 crates

GPL-2.0+

180KB
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