-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 975 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 975 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
[workspace]
resolver = "2"
members = ["methods", "zk", "veritas", "testutil", "bindings/wasm", "bindings/uniffi", "bindings/python"]
[workspace.package]
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
repository = "https://github.com/spacesprotocol/libveritas"
homepage = "https://spacesprotocol.org"
authors = ["Buffrr <contact@buffrr.dev>"]
[workspace.dependencies]
# Internal crates
libveritas = { path = "veritas", version = "0.2.0" }
libveritas_zk = { path = "zk", version = "0.1" }
# External
spaces_protocol = { version = "0.1", features = ["std"] }
spaces_nums = { version = "0.1", features = ["std"] }
sip7 = { version = "0.1", features = ["serde", "std"] }
borsh_utils = { version = "0.1" }
spacedb = { version = "0.1", default-features = false, features = ["extras"] }
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3