Search Gradle plugins

fr.stardustenterprises.rust.importer

Owner: xtrm

A plugin that makes it possible to import outputs from Rust from another Gradle project.

https://github.com/stardust-enterprises/gradle-rust

Sources: https://github.com/stardust-enterprises/gradle-rust.git

Version 3.2.5 (latest)

3.2.5

Created 10 August 2022.

A plugin that makes it possible to import outputs from Rust from another Gradle project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("fr.stardustenterprises.rust.importer") version "3.2.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("fr.stardustenterprises.rust:gradle-rust:3.2.5")
      }
    }
    
    apply(plugin = "fr.stardustenterprises.rust.importer")
  • Applying plugins to all subprojects .