-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (30 loc) · 896 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
[package]
name = "book-of-profits"
version = "0.1.0"
edition = "2021"
authors = ["Nuno David <email@ndavd.com>"]
license = "MIT"
description = "Secure crypto portfolio tracker REPL"
readme = ".github/README.md"
repository = "https://github.com/ndavd/bop"
exclude = [".github/workflows"]
keywords = ["blockchain", "portfolio", "tracker"]
categories = ["cryptography::cryptocurrencies", "visualization"]
[dependencies]
age = { version = "0.11.1", features = ["cli-common"] }
rustyline = "14.0.0"
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3.31"
num-bigint = "0.4.6"
num-traits = "0.2.19"
serde_json = "1.0.133"
serde = { version = "1.0.215", features = ["derive"] }
serde-query = "0.2.0"
tonlib-core = "0.22.4"
base58 = "0.2.0"
curve25519-dalek = "4.1.3"
sha3 = "0.10.8"
pinentry = "0.6.0"
dirs = "5.0.1"
itertools = "0.14.0"