-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (61 loc) · 2.38 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (61 loc) · 2.38 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
61
62
63
64
65
66
[package]
name = "ic-prep"
version.workspace = true
authors.workspace = true
edition.workspace = true
description.workspace = true
documentation.workspace = true
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true }
fs_extra = { workspace = true }
ic-config = { path = "../config" }
ic-limits = { path = "../limits" }
ic-crypto-node-key-generation = { path = "../crypto/node_key_generation" }
ic-crypto-node-key-validation = { path = "../crypto/node_key_validation" }
ic-crypto-test-utils-ni-dkg = { path = "../crypto/test_utils/ni-dkg" }
ic-crypto-utils-threshold-sig-der = { path = "../crypto/utils/threshold_sig_der" }
ic-interfaces = { path = "../interfaces" }
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 = { path = "../registry/client" }
ic-registry-keys = { path = "../registry/keys" }
ic-registry-local-store = { path = "../registry/local_store" }
ic-registry-proto-data-provider = { path = "../registry/proto_data_provider" }
ic-registry-provisional-whitelist = { path = "../registry/provisional_whitelist" }
ic-registry-resource-limits = { path = "../registry/resource_limits" }
ic-registry-routing-table = { path = "../registry/routing_table" }
ic-registry-subnet-features = { path = "../registry/subnet_features" }
ic-registry-subnet-type = { path = "../registry/subnet_type" }
ic-registry-transport = { path = "../registry/transport" }
ic-state-manager = { path = "../state_manager" }
ic-types = { path = "../types/types" }
json5 = { workspace = true }
maplit = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
slog = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
url = { workspace = true }
x509-cert = { workspace = true }
[dev-dependencies]
assert_matches = { workspace = true }
pretty_assertions = { workspace = true }
[lib]
name = "ic_prep_lib"
path = "src/lib.rs"
[[bin]]
name = "ic-prep"
path = "src/bin/prep.rs"
[[bin]]
name = "ic-principal-id"
path = "src/bin/principal_id.rs"