-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
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.12.0-beta.4"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
homepage = "https://github.com/LNP-BP"
repository = "https://github.com/LNP-BP/client_side_validation"
rust-version = "1.81.0" # Due to Error in core
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
amplify = "~4.8.0"
strict_encoding = "~2.8.1"
strict_types = "~2.8.1"
serde = { version = "1", features = ["derive"] }
[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.12.0-beta.4", path = "./commit_verify", default-features = false }
single_use_seals = { version = "0.12.0-beta.4", path = "./single_use_seals", features = ["strict_encoding"] }
serde = { workspace = true, optional = true }
[features]
default = ["derive"]
all = ["serde", "rand", "stl"]
stl = ["commit_verify/stl"]
rand = ["commit_verify/rand"]
derive = ["commit_verify/derive"]
serde = ["dep:serde", "commit_verify/serde"]
[package.metadata.docs.rs]
features = ["all"]