forked from dfinity/icx-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.18 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
[package]
name = "icx-proxy"
version = "0.8.0"
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2018"
description = "CLI tool to create an HTTP proxy to the Internet Computer."
homepage = "https://docs.rs/icx-proxy"
documentation = "https://docs.rs/icx-proxy"
license = "Apache-2.0"
readme = "README.md"
categories = ["command-line-interface", "web-programming::http-server"]
keywords = ["internet-computer", "agent", "icp", "dfinity", "proxy"]
include = ["src", "Cargo.toml", "../LICENSE", "README.md"]
[[bin]]
name = "icx-proxy"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.34"
base64 = "0.13"
candid = { version = "0.7.11", features = ["mute_warnings"] }
clap = { version = "3", features = ["cargo", "derive"] }
garcon = { version = "0.2.3", features = ["async"] }
hex = "0.4.3"
hyper = { version = "0.14.13", features = ["full"] }
hyper-tls = "0.5.0"
ic-agent = "0.12"
ic-utils = "0.12"
lazy-regex = "2"
tokio = { version = "1.8.1", features = ["full"] }
serde = "1.0.115"
serde_cbor = "0.11"
serde_json = "1.0.57"
sha2 = "0.10.1"
slog = { version = "2.7.0", features = ["max_level_trace"] }
slog-async = "2.7.0"
slog-term = "2.8.0"
url = "2.2.1"
[features]
skip_body_verification = []