-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 922 Bytes
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
[package]
name = "transaction-buffer"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = "0.13"
tokio = { version = "1", features = ["full"] }
transaction-consumer = { git = "https://github.com/broxus/transaction-consumer" }
anyhow = "1.0"
chrono = { version = "*" }
log = { version = "0.4", features = ["std", "serde"] }
ton_types = { git = "https://github.com/broxus/ton-labs-types" }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git" }
futures = { version = "0.3" }
sqlx = { version = "0.8.6", features = [
"runtime-tokio-native-tls",
"postgres",
"uuid",
"chrono",
"json",
] }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi.git" }
[dev-dependencies]
env_logger = "0.11"
env-file-reader = "0.3.0"