-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
35 lines (32 loc) · 966 Bytes
/
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
[workspace]
members = ["./crates/*"]
default-members = ["./crates/toner"]
resolver = "2"
[workspace.package]
edition = "2021"
repository = "https://github.com/mitinarseny/toner"
keywords = ["ton", "tlb", "tl-b", "boc"]
categories = ["encoding"]
license-file = "LICENSE.txt"
[workspace.dependencies]
tlb = { path = "./crates/tlb", version = "0.3.2" }
tlbits = { path = "./crates/bits", version = "0.3.2" }
tlb-ton = { path = "./crates/tlb-ton", version = "0.3.2" }
ton-contracts = { path = "./crates/contracts", version = "0.3.2" }
toner = { path = "./crates/toner", version = "0.3.2" }
anyhow = "1"
base64 = "0.21"
bitvec = "1"
chrono = { version = "0.4", default-features = false }
either = "1"
hex = "0.4"
hex-literal = "0.4"
impl-tools = "0.10"
itertools = "0.12"
lazy_static = "1.4"
num-bigint = "0.4"
num-traits = "0.2"
serde_with = { version = "3.8", features = ["macros"] }
sha2 = "0.10"
strum = { version = "0.25", features = ["derive"] }
thiserror = "1"