-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 1.43 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
[workspace]
resolver = "2"
members = [
"sequencer",
"sequencer-core",
"sdk/rust-client",
"examples/app-core",
"examples/canonical-app",
"examples/canonical-test",
"tests/benchmarks",
"tests/harness",
"tests/e2e",
]
default-members = ["sequencer"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
description = "Deterministic sequencer prototype with low-latency soft confirmations"
homepage = "https://github.com/cartesi/sequencer"
repository = "https://github.com/cartesi/sequencer"
readme = "../README.md"
authors = [
"Gabriel Coutinho de Paula <gcdepaula@protonmail.com>",
"Pedro Argento <pedro.argento@gmail.com>",
"Stephen Chen <20940639+stephenctw@users.noreply.github.com>",
]
[workspace.dependencies]
libcmt-sys = { version = "0.1", git = "https://github.com/GCdePaula/cartesi-tools-rs", rev = "ed14b98ecfe9796dc3ca7c9b96bfdbf0ef9baf22" }
trolley = { version = "0.1", git = "https://github.com/GCdePaula/cartesi-tools-rs", rev = "ed14b98ecfe9796dc3ca7c9b96bfdbf0ef9baf22" }
testsi = { version = "0.1", git = "https://github.com/GCdePaula/cartesi-tools-rs", rev = "ed14b98ecfe9796dc3ca7c9b96bfdbf0ef9baf22" }
types = { version = "0.1", git = "https://github.com/GCdePaula/cartesi-tools-rs", rev = "ed14b98ecfe9796dc3ca7c9b96bfdbf0ef9baf22" }
cartesi-machine = { version = "2", git = "https://github.com/cartesi/dave", rev = "317a88a32a1b4a6002d561f37bb833843df55cba", features = ["download_uarch"] }