-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
63 lines (56 loc) · 1.68 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 = [
".",
"commit_verify",
"commit_verify/derive",
"single_use_seals",
]
default-members = [
".",
"commit_verify",
"commit_verify/derive",
"single_use_seals",
]
[workspace.package]
version = "0.11.0-beta.9"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
homepage = "https://github.com/LNP-BP"
repository = "https://github.com/LNP-BP/client_side_validation"
rust-version = "1.77.0" # Due to `rustfix`
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
amplify = "4.7.0"
strict_encoding = "2.7.0"
strict_types = "2.7.0"
[package]
name = "client_side_validation"
version = { workspace = true }
description = "Client-side validation foundation library"
keywords = ["lnp-bp", "smart-contracts", "blockchain"]
categories = ["cryptography"]
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
readme = "README.md"
exclude = [".github", "commit_verify", "single_use_seals"]
[lib]
name = "client_side_validation"
path = "src/lib.rs"
[dependencies]
commit_verify = { version = "0.11.0-beta.9", path = "./commit_verify", default-features = false }
single_use_seals = { version = "0.11.0-beta.9", path = "./single_use_seals" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
[features]
default = ["derive"]
all = ["serde", "rand", "async", "stl"]
stl = ["commit_verify/stl"]
async = ["single_use_seals/async"]
rand = ["commit_verify/rand"]
derive = ["commit_verify/derive"]
serde = ["serde_crate", "commit_verify/serde"]
[package.metadata.docs.rs]
features = ["all"]