This repository was archived by the owner on Feb 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 1.9 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
[package]
name = "srs_oracle"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
algonaut = { path = "/Users/kevin/Development/algonaut-rusk-sdk", version = "0.4.2" }
algonaut_abi = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_abi", version = "0.4.2" }
algonaut_algod = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_algod", version = "0.4.2" }
algonaut_core = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_core", version = "0.4.2" }
algonaut_crypto = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_crypto", version = "0.4.2" }
algonaut_encoding = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_encoding", version = "0.4.2" }
algonaut_indexer = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_indexer", version = "0.4.2", default-features = false }
algonaut_kmd = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_kmd", version = "0.4.2", default-features = false }
algonaut_model = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_model", version = "0.4.2" }
algonaut_transaction = { path = "/Users/kevin/Development/algonaut-rusk-sdk/algonaut_transaction", version = "0.4.2" }
tokio = { version = "1.35.1", features = ["full"] }
blstrs = { version = "0.7.0", features = ["serde"] }
ff = "0.13.0"
base64 = "0.21.2"
thiserror = "1.0.49"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.111"
crypto_box = { version="0.9.1", features=["seal"] }
crypto_secretbox = { version="0.1.1", features=["chacha20"] }
rand = "0.8.5"
log = "0.4.20"
env_logger = "0.10.0"
sha2 = "0.10.8"
argon2 = "0.5.1"
hex = "0.4.3"
elliptic-curve = { version = "0.13.5", features = ["hash2curve"] }
anyhow = "1.0.79"
typenum = "1.16.0"
dotenv = "0.15.0"
config = "0.13.3"