-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 2.45 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (56 loc) · 2.45 KB
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
[package]
name = "ic-https-outcalls-consensus"
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
documentation.workspace = true
[dependencies]
candid = { workspace = true }
hex = { workspace = true }
ic-consensus-utils = { path = "../../consensus/utils" }
ic-error-types = { path = "../../../packages/ic-error-types" }
ic-interfaces = { path = "../../interfaces" }
ic-interfaces-adapter-client = { path = "../../interfaces/adapter_client" }
ic-interfaces-registry = { path = "../../interfaces/registry" }
ic-interfaces-state-manager = { path = "../../interfaces/state_manager" }
ic-logger = { path = "../../monitoring/logger" }
ic-management-canister-types-private = { path = "../../types/management_canister_types" }
ic-metrics = { path = "../../monitoring/metrics" }
ic-protobuf = { path = "../../protobuf" }
ic-registry-client-helpers = { path = "../../registry/helpers" }
ic-registry-subnet-type = { path = "../../registry/subnet_type" }
ic-replicated-state = { path = "../../replicated_state" }
ic-types = { path = "../../types/types" }
ic-types-cycles = { path = "../../types/cycles" }
prometheus = { workspace = true }
rand = { workspace = true }
slog = { workspace = true }
[dev-dependencies]
ic-artifact-pool = { path = "../../artifact_pool" }
ic-config = { path = "../../config" }
ic-consensus-mocks = { path = "../../consensus/mocks" }
ic-crypto-temp-crypto = { path = "../../crypto/temp_crypto" }
ic-error-types = { path = "../../../packages/ic-error-types" }
ic-interfaces-mocks = { path = "../../interfaces/mocks" }
ic-registry-keys = { path = "../../registry/keys" }
ic-registry-subnet-features = { path = "../../registry/subnet_features" }
ic-test-utilities = { path = "../../test_utilities" }
ic-test-utilities-consensus = { path = "../../test_utilities/consensus" }
ic-test-utilities-logger = { path = "../../test_utilities/logger" }
ic-test-utilities-registry = { path = "../../test_utilities/registry" }
ic-test-utilities-state = { path = "../../test_utilities/state" }
ic-test-utilities-time = { path = "../../test_utilities/time" }
ic-test-utilities-types = { path = "../../test_utilities/types" }
ic-types-cycles = { path = "../../types/cycles" }
assert_matches = { workspace = true }
criterion = { workspace = true }
mockall = { workspace = true }
proptest = { workspace = true }
rand_chacha = { workspace = true }
strum = { workspace = true }
[features]
proptest = []
[[bench]]
name = "payload_validation"
harness = false