Skip to content

Commit

Permalink
Fix CI and remove helloworld function (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbihel authored Feb 27, 2024
1 parent 9f496e5 commit 3708a3c
Show file tree
Hide file tree
Showing 8 changed files with 196 additions and 123 deletions.
83 changes: 57 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"

[dependencies]
uniffi = { version = "0.25", features = ["cli"] }
uniffi = { version = "0.26", features = ["cli"] }

isomdl = { git = "https://github.com/spruceid/isomdl", rev = "f7b05df" }

Expand All @@ -27,7 +27,7 @@ serde_json = "1.0.111"
uuid = "1.6.1"

[dev-dependencies]
uniffi = { version = "0.25", features = ["bindgen-tests"] }
uniffi = { version = "0.26", features = ["bindgen-tests"] }

[build-dependencies]
uniffi = { version = "0.25", features = ["build"] }
uniffi = { version = "0.26", features = ["build"] }
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@

```
. // The Rust crate is at the root
|
├── kotlin // Contains the Android library project (without the generated
| // source or dyanmic libraries, these are present in the
| // published package associated with this repo)
|
└── WalletSdkRs // Contains the iOS library, with all the generated source files
// and dylibs, as Git is the package manager of Swift
│ // source or dyanmic libraries, these are present in the
│ // published package associated with this repo)
├── WalletSdkRs // Contains the iOS library, with all the generated source files
│ // and dylibs, as Git is the package manager of Swift
├── tests // Contains cargo tests for Kotlin and Swift for the generated
│ // libraries. These tests act as sanity checks to ensure the
│ // generated libraries will be usable, and are not meant to be
│ // full-fledged functional tests.
```

## Release
Expand Down
Loading

0 comments on commit 3708a3c

Please sign in to comment.