forked from pendulum-chain/substrate-stellar-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 1.57 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
[package]
name = "substrate-stellar-sdk"
version = "0.2.4"
authors = ["Torsten Stüber <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A Substrate compatible SDK for Stellar"
repository = "https://github.com/pendulum-chain/substrate-stellar-sdk"
readme = "README.md"
keywords = ["substrate", "Stellar"]
exclude = ["autogenerator/*"]
[dependencies]
serde_json = { version = '1.0.64', default-features = false, features = ["alloc"], optional = true }
serde = { version = "1.0.100", default-features = false, features = ["derive", "alloc"], optional = true }
hex = { version = "0.4", default-features = false}
sp-std = { version = "5.0.0", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.37" }
sp-runtime = { version = "7.0.0", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.37", optional = true }
sp-io = { version = "7.0.0", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.37", optional = true }
sodalite = { version = "0.4.0" }
sha2 = { default-features = false, version = "0.9.9" }
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
base64 = { default-features = false, version = "0.13.0" }
num-rational = {version = "0.4", default-features = false}
[features]
default = [ "offchain", "std" ]
all-types = []
offchain = [ "sp-runtime", "sp-io", "serde_json", "serde" ]
std = [
"sp-runtime/std",
"sp-std/std",
"sp-io/std",
"serde_json/std",
"serde/std",
"hex/std",
"num-rational/std"
]