Skip to content

Commit

Permalink
Merge pull request #35 from giovanniberti/add-dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
EliseChouleur authored Sep 28, 2023
2 parents d0fa5a6 + 2157637 commit c9abd6b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 14 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: cargo
directory: /
pull-request-branch-name:
separator: "-"
schedule:
interval: weekly
commit-message:
prefix: ''
labels: []
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ documentation = "https://docs.rs/robusta/"
[dependencies]
robusta-codegen = { version = "0.2", path = "./robusta-codegen" }
jni = "0.19.0"
paste = "1.0.0"
static_assertions = "1.1.0"
paste = "^1"
static_assertions = "^1"

[dev-dependencies]
native = { path = "./tests/driver/native" }
Expand Down
6 changes: 3 additions & 3 deletions robusta-android-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "robustaandroidexample"
crate-type = ["cdylib"]

[dependencies]
robusta_jni = { path = "../" }
robusta_jni = { path = "../." }
jni = "0.19.0"
android_logger = "0.9"
log = "0.4.8"
android_logger = "^0"
log = "^0"
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
ndkVersion "22.0.7026061"
ndkVersion "25.2.9519653"
sourceSets {
main.jniLibs.srcDirs += "$buildDir/rustJniLibs/android"
}
}

cargo {
pythonCommand = "python3"
module = "../../"
libname = "robustaandroidexample"
targets = ["arm64"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Tue Nov 30 16:53:57 CET 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions robusta-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ repository = "https://github.com/giovanniberti/robusta/robusta-codegen"
proc-macro = true

[dependencies]
quote = "1"
quote = "^1"
proc-macro2 = { version = "1.0.21", features = ["span-locations"]}
syn = { version = "1.0", features = ["visit", "fold", "derive"] }
syn = { version = "^1", features = ["visit", "fold", "derive"] }
proc-macro-error = { version = "1", default-features = false }
rand = "0.7.3"
darling = "0.10.2"
rand = "^0"
darling = "^0.14"
Inflector = "0.11.4"
2 changes: 1 addition & 1 deletion robusta-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
robusta_jni = { path = "../" }
robusta_jni = { path = "../." }

0 comments on commit c9abd6b

Please sign in to comment.