Search Gradle plugins

io.github.arc-blroth.cargo-wrapper

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.0.0

Created 08 August 2021.

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.0.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.0.0")
  }
}

apply(plugin = "io.github.arc-blroth.cargo-wrapper")

Using the plugins DSL:

plugins {
  id "io.github.arc-blroth.cargo-wrapper" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.arc-blroth:gradle-cargo-wrapper:1.0.0"
  }
}

apply plugin: "io.github.arc-blroth.cargo-wrapper"

Learn how to apply plugins to subprojects