Skip to content

Commit f42f719

Browse files
authored
Merge branch 'main' into km/cose-signatures
2 parents 6deb284 + 0bcfba1 commit f42f719

File tree

11 files changed

+592
-160
lines changed

11 files changed

+592
-160
lines changed

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"cloc",
99
"COSE",
1010
"dealloc",
11+
"Decapsulates",
12+
"decapsulation",
1113
"decryptable",
1214
"dylib",
1315
"encryptable",
@@ -20,7 +22,9 @@
2022
"repr",
2123
"reprompt",
2224
"reqwest",
25+
"rotateable",
2326
"schemars",
27+
"spki",
2428
"totp",
2529
"uniffi",
2630
"wordlist",

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ reqwest = { version = ">=0.12.5, <0.13", features = [
5050
schemars = { version = ">=0.8.9, <0.9", features = ["uuid1", "chrono"] }
5151
serde = { version = ">=1.0, <2.0", features = ["derive"] }
5252
serde_json = ">=1.0.96, <2.0"
53-
serde_qs = ">=0.12.0, <0.15"
53+
serde_qs = ">=0.12.0, <0.16"
5454
serde_repr = ">=0.1.12, <0.2"
5555
thiserror = ">=1.0.40, <3"
5656
tokio = { version = "1.36.0", features = ["macros"] }

crates/bitwarden-uniffi/kotlin/app/build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,40 +6,40 @@ plugins {
66
}
77

88
android {
9-
namespace 'com.bitwarden.myapplication'
10-
compileSdk 35
9+
namespace = 'com.bitwarden.myapplication'
10+
compileSdk = 35
1111

1212
defaultConfig {
13-
applicationId "com.bitwarden.myapplication"
14-
minSdk 28
15-
targetSdk 35
16-
versionCode 1
17-
versionName "1.0"
13+
applicationId = "com.bitwarden.myapplication"
14+
minSdk = 28
15+
targetSdk = 35
16+
versionCode = 1
17+
versionName = "1.0"
1818

19-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2020
vectorDrawables {
21-
useSupportLibrary true
21+
useSupportLibrary = true
2222
}
2323
}
2424

2525
buildTypes {
2626
release {
27-
minifyEnabled false
27+
minifyEnabled = false
2828
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2929
}
3030
}
3131
compileOptions {
32-
sourceCompatibility JavaVersion.VERSION_1_8
33-
targetCompatibility JavaVersion.VERSION_1_8
32+
sourceCompatibility = JavaVersion.VERSION_1_8
33+
targetCompatibility = JavaVersion.VERSION_1_8
3434
}
3535
kotlinOptions {
3636
jvmTarget = '1.8'
3737
}
3838
buildFeatures {
39-
compose true
39+
compose = true
4040
}
4141
composeOptions {
42-
kotlinCompilerExtensionVersion '1.5.12'
42+
kotlinCompilerExtensionVersion = '1.5.12'
4343
}
4444
packagingOptions {
4545
resources {

crates/bitwarden-uniffi/kotlin/sdk/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ plugins {
55
}
66

77
android {
8-
namespace 'com.bitwarden.sdk'
9-
compileSdk 35
8+
namespace = 'com.bitwarden.sdk'
9+
compileSdk = 35
1010

1111
defaultConfig {
12-
minSdk 28
13-
targetSdk 35
12+
minSdk = 28
13+
targetSdk = 35
1414

15-
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
15+
testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'
1616
consumerProguardFiles 'consumer-rules.pro'
1717
}
1818

1919
buildTypes {
2020
release {
21-
minifyEnabled false
21+
minifyEnabled = false
2222
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2323
}
2424
}
2525

2626
compileOptions {
27-
sourceCompatibility JavaVersion.VERSION_1_8
28-
targetCompatibility JavaVersion.VERSION_1_8
27+
sourceCompatibility = JavaVersion.VERSION_1_8
28+
targetCompatibility = JavaVersion.VERSION_1_8
2929
}
3030

3131
kotlinOptions {

0 commit comments

Comments
 (0)