24 lines
635 B
TOML
24 lines
635 B
TOML
[package]
|
|
name = "sdk_common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2.90"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
# sp_backend = { git = "https://github.com/Sosthene00/sp-backend.git", branch = "master" }
|
|
# silentPayments = { git = "https://github.com/Sosthene00/rust-silentPayments", branch = "utils" }
|
|
rand = "0.8.5"
|
|
hex = "0.4.3"
|
|
uuid = { version = "1.6.1", features = ["serde", "v4"] }
|
|
sha2 = "0.10.8"
|
|
chrono = "0.4.31"
|
|
aes-gcm = "0.10.3"
|
|
aes = "0.8.3"
|
|
base64 = "0.21.7"
|
|
rocket = { version = "0.5.0", features = ["json"] }
|