-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (64 loc) · 1.74 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (64 loc) · 1.74 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
67
68
[workspace]
members = [
"canhttp",
"examples/http_canister",
"examples/json_rpc_canister",
"examples/multi_canister",
"ic-agent-canister-runtime",
"ic-canister-runtime",
"ic-pocket-canister-runtime",
"test_fixtures",
]
resolver = "2"
[workspace.package]
authors = ["DFINITY Foundation"]
edition = "2021"
repository = "https://github.com/dfinity/canhttp"
homepage = "https://github.com/dfinity/canhttp"
license = "Apache-2.0"
readme = "README.md"
[workspace.dependencies]
assert_matches = "1.5.0"
async-trait = "0.1.89"
candid = { version = "0.10.29" }
canhttp = { version = "0.6.1", path = "canhttp" }
ciborium = "0.2.2"
derive_more = { version = "2.1.1", features = ["from", "try_unwrap", "unwrap"] }
futures-channel = "0.3.32"
futures-util = "0.3.32"
http = "1.4.1"
ic-agent = "0.47.3"
ic-canister-runtime = { version = "0.2.3", path = "ic-canister-runtime" }
ic-cdk = "0.20.1"
ic-cdk-management-canister = "0.1.1"
ic-error-types = "0.2"
ic-management-canister-types = "0.5.0"
ic-pocket-canister-runtime = { path = "ic-pocket-canister-runtime" }
ic-test-utilities-load-wasm = { git = "https://github.com/dfinity/ic", tag = "release-2025-01-23_03-04-base" }
itertools = "0.14.0"
maplit = "1.0.2"
num-traits = "0.2.19"
pin-project = "1.1.13"
pocket-ic = "13.0.0"
proptest = "1.10.0"
regex-lite = "0.1.9"
serde = "1.0"
serde_bytes = "0.11.19"
serde_json = "1.0"
sha2 = "0.11.0"
strum = { version = "0.28.0", features = ["derive"] }
test_fixtures = { path = "test_fixtures" }
thiserror = "2.0.18"
tokio = "1.52.3"
tower = "0.5.3"
tower-layer = "0.3.3"
url = "2.5.8"
uuid = "1.23.2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
# Required by `ic-test-utilities-load-wasm`
[profile.canister-release]
inherits = "release"