io.github.arc-blroth.cargo-wrapper
Owner: Arc'blroth
A plugin that wraps Rust's Cargo build system, for embedding Rust libraries in Java projects.
https://github.com/Arc-blroth/gradle-cargo-wrapper
Sources: https://github.com/Arc-blroth/gradle-cargo-wrapper.git
Version 1.1.0 (latest)
1.1.0
Created 21 November 2022.
A plugin that wraps Rust's Cargo build system, for embedding Rust libraries in Java projects.
Using the plugins DSL:
plugins {
id("io.github.arc-blroth.cargo-wrapper") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.arc-blroth:gradle-cargo-wrapper:1.1.0")
}
}
apply(plugin = "io.github.arc-blroth.cargo-wrapper")
Using the plugins DSL:
plugins {
id "io.github.arc-blroth.cargo-wrapper" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.arc-blroth:gradle-cargo-wrapper:1.1.0"
}
}
apply plugin: "io.github.arc-blroth.cargo-wrapper"