forked from dfinity/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 1.31 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
[package]
name = "quill"
version = "0.2.5"
authors = ["DFINITY Team"]
edition = "2018"
[[bin]]
name = "quill"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.34"
candid = "0.6.20"
chrono = "0.4.9"
clap = "3.0.0-beta.2"
crc32fast = "1.2.0"
hex = {version = "0.4.2", features = ["serde"] }
ic-base-types = { git = "https://github.com/dfinity/ic", rev = "779549eccfcf61ac702dfc2ee6d76ffdc2db1f7f" }
ic-nns-constants = { git = "https://github.com/dfinity/ic", rev = "779549eccfcf61ac702dfc2ee6d76ffdc2db1f7f" }
ledger-canister = { git = "https://github.com/dfinity/ic", rev = "779549eccfcf61ac702dfc2ee6d76ffdc2db1f7f" }
openssl = "0.10.32"
serde = "1.0"
serde_cbor = "0.11.1"
serde_json = "1.0.57"
serde_bytes = "0.11.2"
tokio = { version = "1.2.0", features = [ "fs" ] }
[features]
static-ssl = ["openssl/vendored"]
[dependencies.ic-agent]
git = "https://github.com/dfinity/agent-rs.git"
rev = "ca9c672f235f27cbbfc6bd4d39afe96228191e8b"
features = ["reqwest"]
[dependencies.ic-types]
git = "https://github.com/dfinity/agent-rs.git"
rev = "ca9c672f235f27cbbfc6bd4d39afe96228191e8b"
[patch.crates-io.ic-agent]
git = "https://github.com/dfinity/agent-rs.git"
rev = "ca9c672f235f27cbbfc6bd4d39afe96228191e8b"
[patch.crates-io.ic-types]
git = "https://github.com/dfinity/agent-rs.git"
rev = "ca9c672f235f27cbbfc6bd4d39afe96228191e8b"