forked from spruceid/mobile-sdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (26 loc) · 756 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "wallet-sdk-rs"
version = "0.1.0"
edition = "2021"
authors = ["Spruce Systems, Inc."]
license = "Apache-2.0 OR MIT"
description = "Wallet SDK Rust bindings"
repository = "https://github.com/spruceid/wallet-sdk-rs/"
[lib]
crate-type = ["staticlib", "lib", "cdylib"]
name = "wallet_sdk_rs"
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[dependencies]
uniffi = { version = "0.25", features = ["cli"] }
isomdl = { git = "https://github.com/spruceid/isomdl", rev = "f7b05df" }
thiserror = "1.0.56"
hex = "0.4.3"
serde_cbor = "0.11.2"
serde_json = "1.0.111"
uuid = "1.6.1"
[dev-dependencies]
uniffi = { version = "0.25", features = ["bindgen-tests"] }
[build-dependencies]
uniffi = { version = "0.25", features = ["build"] }