forked from spruceid/didkit-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 684 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 684 Bytes
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
[package]
name = "didkit"
version = "0.3.5"
authors = ["Spruce Systems, Inc."]
edition = "2018"
description = "Library for Verifiable Credentials and Decentralized Identifiers."
license = "Apache-2.0"
homepage = "https://spruceid.dev/docs/didkit/"
repository = "https://github.com/spruceid/didkit/"
keywords = ["ssi", "did", "python"]
readme = "README.md"
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
didkit_core = { version = "0.6", package = "didkit" }
serde_json = "1.0"
pyo3 = { version = "0.18", features = ["extension-module"] }
pyo3-asyncio = { version = "0.18", features = ["tokio-runtime"] }
tokio = "1.26"
[build-dependencies]
pyo3-build-config = "0.18"