-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
59 lines (55 loc) · 1.46 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
[package]
name = "ic-repl"
version = "0.7.7"
authors = ["DFINITY Team"]
edition = "2021"
default-run = "ic-repl"
[[bin]]
name = "ic-repl"
path = "src/main.rs"
doc = false
[build-dependencies]
lalrpop = "0.20"
[dependencies]
candid = { version = "0.10", features = ["all"] }
candid_parser = { version = "0.2.0-beta.1", features = ["all"] }
rustyline = "14.0"
rustyline-derive = "0.10"
console = "0.15"
pretty_assertions = "1.4"
codespan-reporting = "0.11"
pretty = "0.12"
pem = "3.0"
shellexpand = "3.1"
ic-agent = "0.39"
ic-identity-hsm = "0.39"
ic-transport-types = "0.39"
ic-wasm = { version = "0.9", default-features = false }
inferno = { version = "0.11", default-features = false, features = [
"multithreaded",
"nameattr",
] }
tokio = { version = "1.35", features = ["full"] }
anyhow = "1.0"
rand = "0.8"
logos = "0.14"
lalrpop-util = "0.20"
clap = { version = "4.4", features = ["derive"] }
ed25519-consensus = "2.1.0"
rpassword = "7.2"
serde = "1.0"
serde_json = "1.0"
serde_cbor = "0.11"
hex = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
crc32fast = "1.3"
qrcode = "0.13"
image = { version = "0.24", default-features = false, features = ["png"] }
libflate = "2.0"
base64 = "0.21"
futures = "0.3.30"
reqwest = "0.12.9"
serde_with = { version = "3.11.0", features = ["base64"] }
# When cross-compiling for ARM, we need to use a vendored version of OpenSSL
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10", features = ["vendored"] }