-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (54 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
members = [".", "cli", "inmem"]
default-members = [".", "inmem"]
[workspace.package]
version = "0.12.0-alpha.1"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
repository = "https://github.com/AluVM/sonare"
homepage = "https://ubideco.org/SONARE"
keywords = ["state-machines", "distributed-systems", "decentralized", "partially-replicated", "runtime-environment"]
readme = "README.md"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.77.0" # Due to `rustfix`
[workspace.dependencies]
amplify = "~4.8.0"
strict_encoding = "~2.8.1"
strict_types = "~2.8.1"
aluvm = "0.12.0-beta.2"
ultrasonic = "0.12.0-beta.1"
sonic = "0.12.0-alpha.1"
serde = { version = "1", features = ["derive"] }
[package]
name = "sonare"
version.workspace = true
authors.workspace = true
description = "Runtime environment for formally-verifiable distributed software"
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories = ["algorithms", "cryptography", "science", "no-std", "no-std::no-alloc"]
readme.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
exclude = [".github"]
[lib]
name = "sonare"
[dependencies]
amplify.workspace = true
ultrasonic.workspace = true
sonic.workspace = true
serde = { workspace = true, optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
rand = { version = "0.8.4", optional = true }
getrandom = { version = "0.2", features = ["js"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[package.metadata.docs.rs]
features = ["all"]
[patch.crates-io]
commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.12" }
sonic = { git = "https://github.com/AluVM/sonic" }
ultrasonic = { git = "https://github.com/AluVM/ultrasonic" }