-
Notifications
You must be signed in to change notification settings - Fork 83
/
Cargo.toml
85 lines (79 loc) · 2.53 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[workspace]
resolver = "2"
members = [
"aries/aries_vcx",
"aries/misc/legacy/libvdrtools",
"aries/messages_macros",
"aries/messages",
"aries/misc/shared",
"aries/misc/legacy/diddoc_legacy",
"aries/agents/mediator",
"aries/agents/mediator/client-tui",
"aries/agents/aries-vcx-agent",
"aries/agents/aath-backchannel",
"aries/wrappers/uniffi-aries-vcx/core",
"aries/aries_vcx_anoncreds",
"aries/aries_vcx_wallet",
"aries/aries_vcx_ledger",
"aries/misc/indy_ledger_response_parser",
"aries/misc/wallet_migrator",
"aries/misc/test_utils",
"did_core/did_doc",
"did_core/did_methods/did_peer",
"did_core/did_methods/did_key",
"did_core/did_parser_nom",
"did_core/did_resolver",
"did_core/did_resolver_registry",
"did_core/did_methods/did_resolver_sov",
"did_core/did_methods/did_resolver_web",
"did_core/public_key",
"misc/simple_message_relay",
"misc/display_as_json",
]
[workspace.package]
version = "0.65.0"
authors = [
"Absa Group Limited",
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
]
description = "Library to work with Aries protocols & collection of supporting components"
license = "Apache-2.0"
edition = "2021"
[profile.release]
debug = 0
panic = 'unwind'
incremental = false
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
struct_excessive_bools = "allow"
trivially_copy_pass_by_ref = "allow"
must_use_candidate = "allow"
match_bool = "allow"
no_effect_underscore_binding = "allow"
module_name_repetitions = "allow"
[workspace.lints.rust]
meta_variable_misuse = "warn"
missing_abi = "warn"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
non_ascii_idents = "warn"
pointer_structural_match = "warn"
rust_2018_idioms = "warn"
rust_2021_compatibility = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_qualifications = "warn"
let_underscore_drop = "allow"
[workspace.dependencies]
indy-vdr = { git = "https://github.com/hyperledger/indy-vdr.git", tag = "v0.4.3", default-features = false, features = [
"log",
] }
indy-vdr-proxy-client = { git = "https://github.com/hyperledger/indy-vdr.git", tag = "v0.4.3" }
indy-credx = { git = "https://github.com/hyperledger/indy-shared-rs", tag = "v1.1.0" }
anoncreds = { git = "https://github.com/hyperledger/anoncreds-rs.git", tag = "v0.2.0" }
aries-askar = { version = "0.3.1" }
askar-crypto = { version = "0.3.1", default-features = false }