-
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) · 815 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (33 loc) · 815 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
29
30
31
32
33
34
35
[workspace]
resolver = "2"
members = [
"crates/types",
"crates/core",
"crates/signing",
"crates/provenance",
"crates/sync",
"crates/wasm",
"original-code/xanadugold/src-rust",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["David Jones <david@dgjones.info>"]
[workspace.dependencies]
xudanu-types = { path = "crates/types" }
xudanu-core = { path = "crates/core" }
xudanu-signing = { path = "crates/signing" }
xudanu-provenance = { path = "crates/provenance" }
xudanu-sync = { path = "crates/sync" }
ed25519-dalek = { version = "2", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
sha2 = "0.10"
bincode = "1"
thiserror = "2"
tracing = "0.1"
proptest = "1"
rand = "0.8"
hex = "0.4"
base64 = "0.22"