-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (46 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
59 lines (46 loc) · 1.06 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
[package]
name = "examples"
rust-version.workspace = true
edition.workspace = true
publish = false
[features]
default = []
tonlibjson = ["ton/tonlibjson"]
[dependencies]
ton = { path = "../ton", version = "0" }
ton_core = { path = "../ton_core", version = "0" }
hex = "0.4"
num-bigint = { version = "0.4" }
anyhow = "1.0"
tonlib-core = "0.26"
tokio = {version = "1.46", features =["rt", "macros"]}
log4rs = "1.3"
log = "0.4"
async-trait = "0.1"
[[example]]
name = "perf_cell_from_boc_tonlib"
path = "perf_cell_from_boc_tonlib.rs"
[[example]]
name = "perf_cell_from_boc"
path = "perf_cell_from_boc.rs"
[[example]]
name = "cell_perf_build_cell_tonlib"
path = "cell_perf_build_cell_tonlib.rs"
[[example]]
name = "perf_build_cell"
path = "perf_build_cell.rs"
[[example]]
name = "types_tlb_build_dict_large"
path = "types_tlb_build_dict_large.rs"
[[example]]
name = "read_tx_data"
path = "read_tx_data.rs"
[[example]]
name = "ton_transfer"
path = "ton_transfer.rs"
[[example]]
name = "emulate_get_method"
path = "emulate_get_method.rs"
[[example]]
name = "enum"
path = "enum.rs"