63 releases

new 0.1.62 Dec 5, 2023
0.1.61 Dec 5, 2023
0.1.57 Nov 29, 2023
0.1.50 Oct 14, 2023
0.1.19 Jul 21, 2023

#243 in Web programming

Download history 20/week @ 2023-08-15 21/week @ 2023-08-22 344/week @ 2023-08-29 1304/week @ 2023-09-05 739/week @ 2023-09-12 541/week @ 2023-09-19 845/week @ 2023-09-26 1118/week @ 2023-10-03 494/week @ 2023-10-10 511/week @ 2023-10-17 289/week @ 2023-10-24 353/week @ 2023-10-31 801/week @ 2023-11-07 372/week @ 2023-11-14 1120/week @ 2023-11-21 876/week @ 2023-11-28

3,210 downloads per month
Used in 5 crates

GPL-2.0+

110KB
3K 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

~5–16MB
~235K SLoC