-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
30 lines (27 loc) · 984 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
[package]
name = "rebase_witness_sdk"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "Rebase Witness SDK is a library for witnessing cryptographic attestations and issuing verifiable credentials"
homepage = "https://www.spruceid.dev/rebase"
documentation = "https://www.spruceid.dev/rebase"
repository = "https://github.com/spruceid/rebase/"
keywords = ["cryptography", "identity", "credentials"]
authors = ["Spruce Systems, Inc."]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.53"
base64 = "0.21.3"
rebase = "0.1.6"
reqwest = { version = "0.11.11", features = ["json"] }
serde = "1"
serde_json = "1"
time = {version = "0.3.28", features = ["wasm-bindgen"]}
thiserror = "1"
tsify = "0.4.5"
url = { version = "2", features = ["serde"] }
# NOTE: This is used by tsify
wasm-bindgen = "0.2.84"
[dev-dependencies]
tokio = {version = "1", features = ["full", "macros"]}