Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary dependencies #796

Merged
merged 5 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
253 changes: 7 additions & 246 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions aries_vcx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ modular_libs = ["dep:indy-vdr", "dep:indy-credx"]
test_utils = [ "messages/test_utils", "vdrtools", "modular_libs" ]
# Feature flag for categorising tests which require a ledger to be running
pool_tests = [ "test_utils" ]
# Feature flag for categorising tests which require a ledger and messaging agency to be running
# Feature flag for categorising tests which require a ledger and messaging agency to be running
agency_pool_tests = [ "test_utils" ]
# Feature flag for categorising general tests (usually unit tests)
general_test = [ "test_utils", "messages/general_test" ]
Expand Down Expand Up @@ -71,15 +71,13 @@ indy-vdr = { version = "0.3.4", default-features = false, features = ["ffi", "lo
indy-credx = { git = "https://github.com/anonyome/indy-shared-rs.git", rev = "7342bc624d23ece8845d1a701cd2cdc9cd401bb0", optional = true }
# ----------------------
futures = { version = "0.3", default-features = false }
libloading = "0.5.0"
uuid = { version = "0.8", default-features = false, features = ["v4"] }
strum = "0.16.0"
strum_macros = "0.16.0"
agency_client = { path = "../agency_client" }
derive_builder = "0.10.2"
tokio = { version = "1.20.4" }
messages = { path = "../messages" }
zmq = { version = "0.9.2" }
thiserror = "1.0.37"

[target.'cfg(target_os = "android")'.dependencies]
Expand Down
9 changes: 0 additions & 9 deletions libvdrtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ fatal_warnings = []
[dependencies]
async-std = "1.8.0"
async-trait = "0.1.42"
cfg-if = "1.0.0"
etcommon-rlp = "0.2.4"
failure = { version = "0.1.8", features = ["backtrace"] }
hex = "0.4.0"
Expand All @@ -47,24 +46,16 @@ time = "0.1.44"
zmq = "0.9.2"
lazy_static = "1.3"
byteorder = "1.3.2"
log-panics = "2.0.0"
zeroize = "~1.3.0"
regex = "1.2.1"
indy-api-types = { path = "./indy-api-types"}
indy-utils = { path = "./indy-utils"}
indy-wallet = { path = "./indy-wallet"}
variant_count = "*"
num-traits = "0.2"
num-derive = "0.3"
convert_case = "0.3.2"
futures = { version = "0.3", default-features = false, features = [ "executor", "alloc" ] }
uuid = { version = "0.8", default-features = false, features = ["v4"] }
ursa = { version = "0.3.7", optional = true}

[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.5"

[dev-dependencies]
criterion = "0.2"
dirs = "2.0.2"
rstest = "0.6.4"
Loading