-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
58 lines (50 loc) · 1.67 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
[workspace]
resolver = "2"
members = [
"examples/http-gateway/canister/src/custom_assets",
"examples/http-gateway/rust",
"packages/ic-http-gateway",
]
# https://github.com/rust-lang/cargo/issues/9406
# includes all members except those that must be compiled to WASM
default-members = ["packages/ic-http-gateway"]
[workspace.package]
version = "0.0.0"
authors = ["DFINITY Stiftung"]
edition = "2021"
repository = "https://github.com/dfinity/http-gateway"
homepage = "https://github.com/dfinity/http-gateway#readme"
license = "Apache-2.0"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
[workspace.dependencies]
thiserror = "1"
futures = "0.3"
http = "1"
http-body = "1"
http-body-util = "0.1"
bytes = "1"
base64 = "0.22"
lazy_static = "1"
rand_chacha = "0.3"
serde = "1"
serde_cbor = "0.11"
sha2 = "0.10"
tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["full"] }
hyper-util = "0.1"
ic-cdk = "0.13"
ic-cdk-macros = "0.13"
ic-agent = "0.39"
ic-utils = "0.39"
candid = "0.10"
pocket-ic = "=3.0.0"
assert_matches = "1.5"
rstest = "0.18"
ic-response-verification = { git = "https://github.com/dfinity/response-verification", rev="dcbd7d471e1a5f95d8b1e8a66c4a35fd2a68268f" }
ic-certification = { git = "https://github.com/dfinity/response-verification", rev="dcbd7d471e1a5f95d8b1e8a66c4a35fd2a68268f" }
ic-http-certification = { git = "https://github.com/dfinity/response-verification", rev="dcbd7d471e1a5f95d8b1e8a66c4a35fd2a68268f" }
ic-asset-certification = { git = "https://github.com/dfinity/response-verification", rev="dcbd7d471e1a5f95d8b1e8a66c4a35fd2a68268f" }
ic-http-gateway = { path = "./packages/ic-http-gateway", version = "0.0.0" }