diff --git a/Cargo.lock b/Cargo.lock index 405a0560a8..d9ff9958ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2624,7 +2624,6 @@ dependencies = [ "mc-common", "mc-crypto-digestible", "mc-sgx-core-types", - "mc-sgx-css", "mc-sgx-dcap-types", "mc-sgx-types", "mc-util-build-script", @@ -2921,7 +2920,6 @@ version = "5.0.8" dependencies = [ "mc-blockchain-types", "mc-connection", - "mc-consensus-enclave-api", "mc-ledger-db", "mc-transaction-core", "mc-util-uri", @@ -3076,7 +3074,6 @@ dependencies = [ "mc-attest-enclave-api", "mc-attest-untrusted", "mc-attest-verifier-types", - "mc-blockchain-test-utils", "mc-blockchain-types", "mc-common", "mc-consensus-enclave-api", @@ -3412,7 +3409,6 @@ name = "mc-crypto-digestible-signature" version = "5.0.8" dependencies = [ "mc-crypto-digestible", - "schnorrkel-og", "signature", ] @@ -3535,7 +3531,6 @@ dependencies = [ "ed25519-dalek", "hex_fmt", "mc-account-keys", - "mc-account-keys-types", "mc-core-types", "mc-crypto-digestible", "mc-crypto-digestible-test-utils", @@ -3600,7 +3595,6 @@ dependencies = [ "mc-crypto-keys", "mc-util-build-script", "pem", - "x509-signature", ] [[package]] @@ -3743,7 +3737,6 @@ dependencies = [ "mc-util-cli", "mc-util-from-random", "mc-util-grpc", - "mc-util-keyfile", "mc-util-parse", "mc-util-uri", "mc-watcher", @@ -3901,7 +3894,6 @@ dependencies = [ "mc-fog-ingest-client", "mc-fog-ingest-enclave", "mc-fog-ingest-enclave-api", - "mc-fog-ingest-enclave-measurement", "mc-fog-ingest-server-test-utils", "mc-fog-recovery-db-iface", "mc-fog-sql-recovery-db", @@ -4135,7 +4127,6 @@ dependencies = [ "mc-transaction-core", "mc-util-build-script", "mc-util-build-sgx", - "mc-util-cli", "mc-util-encodings", "mc-util-from-random", "mc-util-grpc", @@ -4365,11 +4356,9 @@ dependencies = [ "displaydoc", "grpcio", "mc-account-keys", - "mc-attest-core", "mc-common", "mc-fog-report-api", "mc-fog-report-types", - "mc-fog-report-validation", "mc-util-grpc", "mc-util-serial", "mc-util-uri", @@ -4550,7 +4539,6 @@ name = "mc-fog-sig-report" version = "5.0.8" dependencies = [ "displaydoc", - "mc-attest-core", "mc-attest-verifier-types", "mc-crypto-digestible-signature", "mc-crypto-keys", @@ -4693,7 +4681,6 @@ dependencies = [ "mc-util-test-helper", "mc-util-test-vector", "mc-util-test-with-data", - "mc-watcher-api", "prost", "serde", "yare 1.0.2", @@ -4746,7 +4733,6 @@ dependencies = [ "mc-attest-enclave-api", "mc-attest-verifier", "mc-common", - "mc-crypto-ake-enclave", "mc-crypto-keys", "mc-enclave-boundary", "mc-fog-ocall-oram-storage-edl", @@ -4779,7 +4765,6 @@ dependencies = [ "mc-attest-core", "mc-attest-enclave-api", "mc-common", - "mc-crypto-ake-enclave", "mc-crypto-keys", "mc-crypto-noise", "mc-fog-recovery-db-iface", @@ -4916,7 +4901,6 @@ dependencies = [ "mc-util-encodings", "mc-util-from-random", "mc-util-grpc", - "mc-util-metered-channel", "mc-util-metrics", "mc-util-parse", "mc-util-serial", @@ -5127,7 +5111,6 @@ version = "4.1.0-pre0" dependencies = [ "base64 0.21.2", "displaydoc", - "mc-api", "mc-blockchain-types", "mc-common", "mc-consensus-scp-types", @@ -5739,7 +5722,6 @@ version = "5.0.8" dependencies = [ "mc-util-test-vector", "serde", - "serde-big-array", ] [[package]] @@ -5771,7 +5753,6 @@ dependencies = [ "mc-fog-view-protocol", "mc-oblivious-traits", "mc-test-vectors-definitions", - "mc-transaction-builder", "mc-transaction-core", "mc-util-from-random", "mc-util-serial", @@ -5931,7 +5912,6 @@ dependencies = [ "mc-crypto-ring-signature", "mc-crypto-ring-signature-signer", "mc-transaction-core", - "mc-transaction-extra", "mc-transaction-summary", "mc-util-repr-bytes", "mc-util-serial", @@ -8165,16 +8145,6 @@ dependencies = [ "serde_derive", ] -[[package]] -name = "serde-big-array" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18b20e7752957bbe9661cff4e0bb04d183d0948cdab2ea58cdb9df36a61dfe62" -dependencies = [ - "serde", - "serde_derive", -] - [[package]] name = "serde_cbor" version = "0.11.1" diff --git a/attest/core/Cargo.toml b/attest/core/Cargo.toml index e931562557..1d28da6b44 100644 --- a/attest/core/Cargo.toml +++ b/attest/core/Cargo.toml @@ -29,7 +29,6 @@ mc-attest-verifier-types = { path = "../verifier/types" } mc-common = { path = "../../common", default-features = false } mc-crypto-digestible = { path = "../../crypto/digestible" } mc-sgx-core-types = "0.9.0" -mc-sgx-css = { path = "../../sgx/css" } mc-sgx-dcap-types = "0.9.0" mc-sgx-types = { path = "../../sgx/types" } mc-util-encodings = { path = "../../util/encodings" } diff --git a/connection/test-utils/Cargo.toml b/connection/test-utils/Cargo.toml index 46b4d9cf42..40e3e7788b 100644 --- a/connection/test-utils/Cargo.toml +++ b/connection/test-utils/Cargo.toml @@ -8,7 +8,6 @@ rust-version = { workspace = true } [dependencies] mc-blockchain-types = { path = "../../blockchain/types" } mc-connection = { path = "../../connection" } -mc-consensus-enclave-api = { path = "../../consensus/enclave/api" } mc-ledger-db = { path = "../../ledger/db", features = ["test_utils"] } mc-transaction-core = { path = "../../transaction/core" } mc-util-uri = { path = "../../util/uri" } diff --git a/consensus/enclave/Cargo.toml b/consensus/enclave/Cargo.toml index ec1ee884c4..35d0b33ef6 100644 --- a/consensus/enclave/Cargo.toml +++ b/consensus/enclave/Cargo.toml @@ -16,7 +16,6 @@ mc-blockchain-types = { path = "../../blockchain/types" } mc-common = { path = "../../common" } mc-consensus-enclave-api = { path = "./api" } mc-consensus-enclave-edl = { path = "./edl" } -mc-consensus-enclave-measurement = { path = "../../consensus/enclave/measurement" } mc-crypto-keys = { path = "../../crypto/keys" } mc-enclave-boundary = { path = "../../enclave-boundary" } mc-sgx-panic-edl = { path = "../../sgx/panic-edl" } @@ -37,6 +36,7 @@ pkg-config = "0.3" [dev-dependencies] mc-attest-ake = { path = "../../attest/ake" } mc-attest-api = { path = "../../attest/api" } +mc-consensus-enclave-measurement = { path = "../../consensus/enclave/measurement" } mc-fog-test-infra = { path = "../../fog/test_infra" } mc-ledger-db = { path = "../../ledger/db", features = ["test_utils"] } mc-rand = "1.0" diff --git a/consensus/enclave/mock/Cargo.toml b/consensus/enclave/mock/Cargo.toml index 5ea847c168..e069ea3267 100644 --- a/consensus/enclave/mock/Cargo.toml +++ b/consensus/enclave/mock/Cargo.toml @@ -12,7 +12,6 @@ mc-attest-core = { path = "../../../attest/core" } mc-attest-enclave-api = { path = "../../../attest/enclave-api" } mc-attest-untrusted = { path = "../../../attest/untrusted" } mc-attest-verifier-types = { path = "../../../attest/verifier/types" } -mc-blockchain-test-utils = { path = "../../../blockchain/test-utils" } mc-blockchain-types = { path = "../../../blockchain/types" } mc-common = { path = "../../../common" } mc-consensus-enclave-api = { path = "../api" } diff --git a/consensus/enclave/trusted/Cargo.lock b/consensus/enclave/trusted/Cargo.lock index d6732ce1e4..dc376f9c75 100644 --- a/consensus/enclave/trusted/Cargo.lock +++ b/consensus/enclave/trusted/Cargo.lock @@ -1016,7 +1016,6 @@ dependencies = [ "mc-common", "mc-crypto-digestible", "mc-sgx-core-types", - "mc-sgx-css", "mc-sgx-dcap-types", "mc-sgx-types", "mc-util-build-script", @@ -1368,7 +1367,6 @@ name = "mc-crypto-digestible-signature" version = "5.0.8" dependencies = [ "mc-crypto-digestible", - "schnorrkel-og", "signature", ] @@ -1460,7 +1458,6 @@ dependencies = [ "curve25519-dalek", "displaydoc", "ed25519-dalek", - "mc-account-keys-types", "mc-core-types", "mc-crypto-digestible", "mc-crypto-hashes", diff --git a/consensus/scp/Cargo.toml b/consensus/scp/Cargo.toml index eb4e62d978..7ceaa37a0d 100644 --- a/consensus/scp/Cargo.toml +++ b/consensus/scp/Cargo.toml @@ -20,7 +20,6 @@ mc-crypto-keys = { path = "../../crypto/keys" } mc-util-from-random = { path = "../../util/from-random" } mc-util-serial = { path = "../../util/serial", features = ["std"] } -maplit = "1.0.2" mockall = "0.11.4" primitive-types = "0.12.1" rand = "0.8" @@ -35,6 +34,7 @@ mc-util-logger-macros = { path = "../../util/logger-macros" } mc-util-test-helper = { path = "../../util/test-helper" } crossbeam-channel = "0.5" +maplit = "1.0.2" serial_test = "2.0" tempfile = "3.8" diff --git a/crypto/digestible/signature/Cargo.toml b/crypto/digestible/signature/Cargo.toml index 08b67cf051..edfad68c91 100644 --- a/crypto/digestible/signature/Cargo.toml +++ b/crypto/digestible/signature/Cargo.toml @@ -17,5 +17,4 @@ default = ["alloc", "derive", "dalek"] [dependencies] mc-crypto-digestible = { path = "..", default_features = false } -schnorrkel-og = { version = "0.11.0-pre.0", default-features = false } signature = { version = "2.0.0", default-features = false } diff --git a/crypto/ring-signature/Cargo.toml b/crypto/ring-signature/Cargo.toml index 4b6c12f7e2..d7d98c914b 100644 --- a/crypto/ring-signature/Cargo.toml +++ b/crypto/ring-signature/Cargo.toml @@ -25,7 +25,6 @@ ed25519-dalek = { version = "2.0.0", default-features = false } hex_fmt = { version = "0.3", optional = true } # MobileCoin dependencies -mc-account-keys-types = { path = "../../account-keys/types", default-features = false } mc-core-types = { path = "../../core/types", default-features = false } mc-crypto-digestible = { path = "../../crypto/digestible", default-features = false, features = ["dalek", "derive"] } mc-crypto-hashes = { path = "../../crypto/hashes", default-features = false } diff --git a/crypto/x509/test-vectors/Cargo.toml b/crypto/x509/test-vectors/Cargo.toml index c7bed35ba0..8c1d77bcc9 100644 --- a/crypto/x509/test-vectors/Cargo.toml +++ b/crypto/x509/test-vectors/Cargo.toml @@ -24,4 +24,3 @@ mc-crypto-keys = { path = "../../keys" } clap = { version = "4.4", features = ["derive", "env"] } pem = "3.0" -x509-signature = "0.5" diff --git a/fog/ingest/client/Cargo.toml b/fog/ingest/client/Cargo.toml index 3c53fdd1e4..7c4f0591f8 100644 --- a/fog/ingest/client/Cargo.toml +++ b/fog/ingest/client/Cargo.toml @@ -48,7 +48,6 @@ mc-common = { path = "../../../common", features = ["log"] } mc-crypto-keys = { path = "../../../crypto/keys", default-features = false } mc-util-cli = { path = "../../../util/cli" } mc-util-grpc = { path = "../../../util/grpc" } -mc-util-keyfile = { path = "../../../util/keyfile" } mc-util-parse = { path = "../../../util/parse" } mc-util-uri = { path = "../../../util/uri" } diff --git a/fog/ingest/enclave/trusted/Cargo.lock b/fog/ingest/enclave/trusted/Cargo.lock index 2759399889..cdcb3822a4 100644 --- a/fog/ingest/enclave/trusted/Cargo.lock +++ b/fog/ingest/enclave/trusted/Cargo.lock @@ -1046,7 +1046,6 @@ dependencies = [ "mc-common", "mc-crypto-digestible", "mc-sgx-core-types", - "mc-sgx-css", "mc-sgx-dcap-types", "mc-sgx-types", "mc-util-build-script", @@ -1305,7 +1304,6 @@ name = "mc-crypto-digestible-signature" version = "5.0.8" dependencies = [ "mc-crypto-digestible", - "schnorrkel-og", "signature", ] @@ -1384,7 +1382,6 @@ dependencies = [ "curve25519-dalek", "displaydoc", "ed25519-dalek", - "mc-account-keys-types", "mc-core-types", "mc-crypto-digestible", "mc-crypto-hashes", @@ -1598,7 +1595,6 @@ dependencies = [ "mc-crypto-keys", "mc-fog-kex-rng", "mc-transaction-core", - "mc-watcher-api", "prost", "serde", ] @@ -1988,14 +1984,6 @@ dependencies = [ "serde", ] -[[package]] -name = "mc-watcher-api" -version = "5.0.8" -dependencies = [ - "displaydoc", - "serde", -] - [[package]] name = "memchr" version = "2.6.3" diff --git a/fog/ingest/server/Cargo.toml b/fog/ingest/server/Cargo.toml index 132745c505..ab35be683d 100644 --- a/fog/ingest/server/Cargo.toml +++ b/fog/ingest/server/Cargo.toml @@ -52,16 +52,15 @@ mc-watcher-api = { path = "../../../watcher/api" } # fog mc-fog-api = { path = "../../api" } -mc-fog-ingest-client = { path = "../client" } mc-fog-ingest-enclave = { path = "../enclave" } mc-fog-ingest-enclave-api = { path = "../enclave/api" } -mc-fog-ingest-enclave-measurement = { path = "../enclave/measurement" } mc-fog-recovery-db-iface = { path = "../../recovery_db_iface" } mc-fog-sql-recovery-db = { path = "../../sql_recovery_db" } mc-fog-types = { path = "../../types" } mc-fog-uri = { path = "../../uri" } [dev-dependencies] +mc-fog-ingest-client = { path = "../client" } mc-fog-ingest-server-test-utils = { path = "test-utils" } mc-fog-test-infra = { path = "../../test_infra" } mc-util-build-info = { path = "../../../util/build/info" } diff --git a/fog/ledger/enclave/trusted/Cargo.lock b/fog/ledger/enclave/trusted/Cargo.lock index 87031385b6..c05deb8d85 100644 --- a/fog/ledger/enclave/trusted/Cargo.lock +++ b/fog/ledger/enclave/trusted/Cargo.lock @@ -1040,7 +1040,6 @@ dependencies = [ "mc-common", "mc-crypto-digestible", "mc-sgx-core-types", - "mc-sgx-css", "mc-sgx-dcap-types", "mc-sgx-types", "mc-util-build-script", @@ -1299,7 +1298,6 @@ name = "mc-crypto-digestible-signature" version = "5.0.8" dependencies = [ "mc-crypto-digestible", - "schnorrkel-og", "signature", ] @@ -1378,7 +1376,6 @@ dependencies = [ "curve25519-dalek", "displaydoc", "ed25519-dalek", - "mc-account-keys-types", "mc-core-types", "mc-crypto-digestible", "mc-crypto-hashes", @@ -1562,7 +1559,6 @@ dependencies = [ "mc-crypto-keys", "mc-fog-kex-rng", "mc-transaction-core", - "mc-watcher-api", "prost", "serde", ] diff --git a/fog/ledger/server/Cargo.toml b/fog/ledger/server/Cargo.toml index d1768b31b1..807dedfffd 100644 --- a/fog/ledger/server/Cargo.toml +++ b/fog/ledger/server/Cargo.toml @@ -29,7 +29,6 @@ mc-crypto-keys = { path = "../../../crypto/keys" } mc-ledger-db = { path = "../../../ledger/db" } mc-sgx-report-cache-untrusted = { path = "../../../sgx/report-cache/untrusted" } mc-transaction-core = { path = "../../../transaction/core" } -mc-util-cli = { path = "../../../util/cli" } mc-util-encodings = { path = "../../../util/encodings" } mc-util-from-random = { path = "../../../util/from-random" } mc-util-grpc = { path = "../../../util/grpc" } diff --git a/fog/ocall_oram_storage/testing/Cargo.toml b/fog/ocall_oram_storage/testing/Cargo.toml index 30ca190a4e..cdd73b5899 100644 --- a/fog/ocall_oram_storage/testing/Cargo.toml +++ b/fog/ocall_oram_storage/testing/Cargo.toml @@ -8,13 +8,15 @@ readme = "README.md" rust-version = { workspace = true } [dependencies] +mc-fog-ocall-oram-storage-untrusted = { path = "../untrusted" } + +[dev-dependencies] # mc-oblivious aligned-cmov = "2.3" mc-oblivious-traits = "2.3" # fog mc-fog-ocall-oram-storage-trusted = { path = "../trusted" } -mc-fog-ocall-oram-storage-untrusted = { path = "../untrusted" } # mobilecoin mc-util-test-helper = { path = "../../../util/test-helper" } diff --git a/fog/report/connection/Cargo.toml b/fog/report/connection/Cargo.toml index 3343212fe0..825a1e159b 100644 --- a/fog/report/connection/Cargo.toml +++ b/fog/report/connection/Cargo.toml @@ -9,11 +9,9 @@ rust-version = { workspace = true } [dependencies] mc-account-keys = { path = "../../../account-keys" } -mc-attest-core = { path = "../../../attest/core" } mc-common = { path = "../../../common", features = ["log"] } mc-fog-report-api = { path = "../api" } mc-fog-report-types = { path = "../types" } -mc-fog-report-validation = { path = "../validation" } mc-util-grpc = { path = "../../../util/grpc" } mc-util-serial = { path = "../../../util/serial" } mc-util-uri = { path = "../../../util/uri" } diff --git a/fog/sig/report/Cargo.toml b/fog/sig/report/Cargo.toml index af6669c3d9..a953c102b9 100644 --- a/fog/sig/report/Cargo.toml +++ b/fog/sig/report/Cargo.toml @@ -9,7 +9,6 @@ readme = "README.md" rust-version = { workspace = true } [dependencies] -mc-attest-core = { path = "../../../attest/core", default-features = false } mc-crypto-digestible-signature = { path = "../../../crypto/digestible/signature", default-features = false } mc-crypto-keys = { path = "../../../crypto/keys", default-features = false } mc-fog-report-types = { path = "../../report/types", default-features = false } diff --git a/fog/types/Cargo.toml b/fog/types/Cargo.toml index 4702718552..60c36ea16c 100644 --- a/fog/types/Cargo.toml +++ b/fog/types/Cargo.toml @@ -13,7 +13,6 @@ mc-attest-enclave-api = { path = "../../attest/enclave-api" } mc-common = { path = "../../common/", default-features = false } mc-crypto-keys = { path = "../../crypto/keys", default-features = false } mc-transaction-core = { path = "../../transaction/core" } -mc-watcher-api = { path = "../../watcher/api" } # fog mc-fog-kex-rng = { path = "../kex_rng" } diff --git a/fog/view/enclave/Cargo.toml b/fog/view/enclave/Cargo.toml index 39a3a75e5b..b15829ffba 100644 --- a/fog/view/enclave/Cargo.toml +++ b/fog/view/enclave/Cargo.toml @@ -12,7 +12,6 @@ mc-attest-core = { path = "../../../attest/core" } mc-attest-enclave-api = { path = "../../../attest/enclave-api" } mc-attest-verifier = { path = "../../../attest/verifier" } mc-common = { path = "../../../common", features = ["log"] } -mc-crypto-ake-enclave = { path = "../../../crypto/ake/enclave" } mc-crypto-keys = { path = "../../../crypto/keys" } mc-enclave-boundary = { path = "../../../enclave-boundary" } mc-sgx-debug-edl = { path = "../../../sgx/debug-edl" } diff --git a/fog/view/enclave/api/Cargo.toml b/fog/view/enclave/api/Cargo.toml index 7f057a281b..8569a774fd 100644 --- a/fog/view/enclave/api/Cargo.toml +++ b/fog/view/enclave/api/Cargo.toml @@ -11,7 +11,6 @@ rust-version = { workspace = true } mc-attest-core = { path = "../../../../attest/core", default-features = false } mc-attest-enclave-api = { path = "../../../../attest/enclave-api", default-features = false } mc-common = { path = "../../../../common", default-features = false } -mc-crypto-ake-enclave = { path = "../../../../crypto/ake/enclave", default-features = false } mc-crypto-keys = { path = "../../../../crypto/keys", default-features = false } mc-crypto-noise = { path = "../../../../crypto/noise", default-features = false } mc-sgx-compat = { path = "../../../../sgx/compat", default-features = false } diff --git a/fog/view/enclave/trusted/Cargo.lock b/fog/view/enclave/trusted/Cargo.lock index e9a9d9ee76..fd5e3f45ad 100644 --- a/fog/view/enclave/trusted/Cargo.lock +++ b/fog/view/enclave/trusted/Cargo.lock @@ -1046,7 +1046,6 @@ dependencies = [ "mc-common", "mc-crypto-digestible", "mc-sgx-core-types", - "mc-sgx-css", "mc-sgx-dcap-types", "mc-sgx-types", "mc-util-build-script", @@ -1305,7 +1304,6 @@ name = "mc-crypto-digestible-signature" version = "5.0.8" dependencies = [ "mc-crypto-digestible", - "schnorrkel-og", "signature", ] @@ -1384,7 +1382,6 @@ dependencies = [ "curve25519-dalek", "displaydoc", "ed25519-dalek", - "mc-account-keys-types", "mc-core-types", "mc-crypto-digestible", "mc-crypto-hashes", @@ -1513,7 +1510,6 @@ dependencies = [ "mc-crypto-keys", "mc-fog-kex-rng", "mc-transaction-core", - "mc-watcher-api", "prost", "serde", ] @@ -1526,7 +1522,6 @@ dependencies = [ "mc-attest-core", "mc-attest-enclave-api", "mc-common", - "mc-crypto-ake-enclave", "mc-crypto-keys", "mc-crypto-noise", "mc-fog-recovery-db-iface", @@ -2000,14 +1995,6 @@ dependencies = [ "serde", ] -[[package]] -name = "mc-watcher-api" -version = "5.0.8" -dependencies = [ - "displaydoc", - "serde", -] - [[package]] name = "memchr" version = "2.6.3" diff --git a/fog/view/server/Cargo.toml b/fog/view/server/Cargo.toml index 192852f631..975fbbdd05 100644 --- a/fog/view/server/Cargo.toml +++ b/fog/view/server/Cargo.toml @@ -50,7 +50,6 @@ mc-sgx-report-cache-untrusted = { path = "../../../sgx/report-cache/untrusted" } mc-util-cli = { path = "../../../util/cli" } mc-util-from-random = { path = "../../../util/from-random" } mc-util-grpc = { path = "../../../util/grpc" } -mc-util-metered-channel = { path = "../../../util/metered-channel" } mc-util-metrics = { path = "../../../util/metrics" } mc-util-parse = { path = "../../../util/parse" } mc-util-serial = { path = "../../../util/serial" } diff --git a/light-client/verifier/Cargo.toml b/light-client/verifier/Cargo.toml index d98082373c..be26891f6a 100644 --- a/light-client/verifier/Cargo.toml +++ b/light-client/verifier/Cargo.toml @@ -13,7 +13,6 @@ prost = { version = "0.12", default-features = false, features = ["prost-derive" serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } serde_with = { version = "3.3", default-features = false, features = ["hex"] } -mc-api = { path = "../../api" } mc-blockchain-types = { path = "../../blockchain/types" } mc-common = { path = "../../common" } mc-consensus-scp-types = { path = "../../consensus/scp/types" } diff --git a/test-vectors/definitions/Cargo.toml b/test-vectors/definitions/Cargo.toml index c9b70b7980..4bedcc8544 100644 --- a/test-vectors/definitions/Cargo.toml +++ b/test-vectors/definitions/Cargo.toml @@ -10,4 +10,3 @@ rust-version = { workspace = true } mc-util-test-vector = { path = "../../util/test-vector" } serde = { version = "1.0", default-features = false, features = ["derive"] } -serde-big-array = { version = "0.3.2", features = ["const-generics"] } diff --git a/test-vectors/tx-out-records/Cargo.toml b/test-vectors/tx-out-records/Cargo.toml index f1e5750f81..822cfcf6eb 100644 --- a/test-vectors/tx-out-records/Cargo.toml +++ b/test-vectors/tx-out-records/Cargo.toml @@ -22,7 +22,6 @@ mc-fog-types = { path = "../../fog/types" } mc-fog-view-protocol = { path = "../../fog/view/protocol" } mc-oblivious-traits = "2.3" mc-test-vectors-definitions = { path = "../definitions" } -mc-transaction-builder = { path = "../../transaction/builder" } mc-transaction-core = { path = "../../transaction/core" } mc-util-from-random = { path = "../../util/from-random" } mc-util-serial = { path = "../../util/serial", default-features = false } diff --git a/transaction/signer/Cargo.toml b/transaction/signer/Cargo.toml index bc6e8c592f..5b2c579fce 100644 --- a/transaction/signer/Cargo.toml +++ b/transaction/signer/Cargo.toml @@ -32,7 +32,6 @@ mc-crypto-keys = { path = "../../crypto/keys", default-features = false } mc-crypto-ring-signature = { path = "../../crypto/ring-signature" } mc-crypto-ring-signature-signer = { path = "../../crypto/ring-signature/signer" } mc-transaction-core = { path = "../../transaction/core" } -mc-transaction-extra = { path = "../../transaction/extra" } mc-transaction-summary = { path = "../../transaction/summary" } mc-util-repr-bytes = { path = "../../util/repr-bytes", default-features = false } mc-util-serial = { path = "../../util/serial", default-features = false }