11 releases

new 0.3.0 Jul 22, 2024
0.2.1 Jun 4, 2024
0.2.0 May 20, 2024
0.1.8 Mar 15, 2024
0.1.0 Mar 24, 2023

#132 in Development tools

Download history 35/week @ 2024-04-03 105/week @ 2024-05-15 46/week @ 2024-05-22 60/week @ 2024-05-29 53/week @ 2024-06-05 3/week @ 2024-06-12 29/week @ 2024-07-03 69/week @ 2024-07-17

98 downloads per month

Apache-2.0 OR MIT

130KB
3K SLoC

Duchess: silky smooth Java integration

Duchess is a Rust crate that makes it easy, ergonomic, and efficient to interoperate with Java code.

TL;DR

Duchess permits you to reflect Java classes into Rust and easily invoke methods on Java objects. For example the following Java code...

Logger logger = new log.Logger();
logger.addEvent(
    Event.builder()
        .withTime(new Date())
        .withName("foo")
        .build()
);

...could be executed in Rust as follows:

let logger = log::Logger::new().execute()?;
logger
    .add_event(
        log::Event::builder()
            .with_time(java::util::Date::new())
            .with_name("foo")
            .build(),
    )
    .execute()?;

Curious to learn more?

Check out the...

Curious to get involved?

Look for issues tagged with good first issue and join the Zulip. For more information on how to develop duchess, see Contributing. You may also be able to improve test coverage.

Dependencies

~5–16MB
~216K SLoC