This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 1.69 KB
/
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
36
37
38
39
40
[package]
name = "sov-demo"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.62"
borsh = { version = "0.10.3", features = ["bytes"] }
jsonrpsee = { version = "0.16.2", features = ["http-client", "server"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10.6"
tokio = { version = "1", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
hex = "0.4.3"
tendermint = "0.32"
jupiter = { git = "https://github.com/Sovereign-Labs/Jupiter.git", rev = "678ba2400cf32b9c3bc51584a13db362d897c2bc" }
demo-app = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "7a299f78d74734298604bfd2fd2174138c0a3a32", features = ["native"] }
sovereign-sdk = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "7a299f78d74734298604bfd2fd2174138c0a3a32" }
sovereign-db = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "7a299f78d74734298604bfd2fd2174138c0a3a32" }
risc0-adapter = { git = "https://github.com/Sovereign-Labs/sovereign.git", rev = "7a299f78d74734298604bfd2fd2174138c0a3a32" }
#sovereign-db = { git = "https://github.com/Sovereign-Labs/sovereign.git", features = ["temp"], rev = "a879d355b0506b64decacabf9f072bee122cf9ca1" }
[dev-dependencies]
tempfile = "3.5.0"
[patch.'https://github.com/Sovereign-Labs/sovereign.git']
sovereign-sdk = { path = "../sovereign/sdk" }
demo-app = { path = "../sovereign/demo-app" }
risc0-adapter = { path = "../sovereign/adapters/risc0" }
sovereign-db = { path = "../sovereign/db/sovereign-db" }
[patch.'https://github.com/Sovereign-Labs/Jupiter.git']
jupiter = { path = "../jupiter"}