-
Notifications
You must be signed in to change notification settings - Fork 82
/
Cargo.toml
46 lines (42 loc) · 1.13 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
[package]
name = "ibc-apps"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
keywords = [ "blockchain", "cosmos", "ibc", "applications", "token-transfer" ]
readme = "README.md"
description = """
Maintained by `ibc-rs`, re-exports a comprehensive set of libraries that implement various
IBC applications, enabling smooth integration of IBC business logic into any blockchain system.
"""
[package.metadata.docs.rs]
all-features = true
[dependencies]
ibc-app-transfer = { workspace = true }
ibc-app-nft-transfer = { workspace = true, optional = true, features = [ "std", "serde", "schema", "borsh", "parity-scale-codec" ] }
[features]
default = [ "std" ]
std = [
"ibc-app-transfer/std",
"nft-transfer",
]
serde = [
"ibc-app-transfer/serde",
]
schema = [
"ibc-app-transfer/schema",
"serde",
"std",
]
borsh = [
"ibc-app-transfer/borsh",
]
parity-scale-codec = [
"ibc-app-transfer/parity-scale-codec",
]
nft-transfer = [
"ibc-app-nft-transfer",
]