forked from elribonazo/didcomm-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 815 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
34
35
36
37
38
39
40
41
[package]
name = 'didcomm-uniffi'
version = '0.4.1'
authors = ['Vyacheslav Gudkov <vyacheslav.gudkov@dsr-corporation.com>']
edition = '2018'
description = 'FFI wrapper for DIDComm'
license = 'Apache-2.0'
repository = 'https://github.com/sicpa-dlab/didcomm-rust'
[lib]
crate-type = [
'cdylib'
]
[dependencies.didcomm_core]
path = '..'
features = ['uniffi']
package = "didcomm"
[dev-dependencies.didcomm_core]
path = '..'
features = ['testvectors']
package = "didcomm"
[dependencies]
uniffi = "0.24"
lazy_static = "1.3"
futures = { version = "0.3.17", features = ["thread-pool"] }
num_cpus = "1.8.0"
async-trait = '0.1'
serde_json = '1.0'
[dev-dependencies.tokio]
version = '1.9'
features = [
'rt',
'macros',
]
[build-dependencies]
uniffi_build = { version = "0.24", features=["builtin-bindgen"] }