-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
45 lines (40 loc) · 974 Bytes
/
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
[package]
name = "stellar-base"
version = "0.6.0"
authors = ["Francesco Ceccon <[email protected]>"]
edition = "2021"
description = "Low level Stellar types"
license = "Apache-2.0"
documentation = "https://docs.rs/stellar-base"
repository = "https://github.com/aurora-rs/stellar-base-rs"
readme = "README.md"
keywords = ["stellar", "blockchain"]
[dependencies]
base32 = "0.4.0"
base64 = "0.21.0"
bitflags = "2.4"
byteorder = "1.4.3"
chrono = "0.4.19"
crc16 = "0.4.0"
ed25519 = "1.5"
json = "0.12.4"
num-traits = "0.2.14"
num-bigint = "0.4.3"
num-rational = "0.4.0"
rust_decimal = "1.23.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.1"
thiserror = "1.0.30"
xdr-rs-serialize = "0.3.0"
xdr-rs-serialize-derive = "0.3.0"
[dependencies.sodiumoxide]
version = "0.2.7"
optional = true
[dev-dependencies]
ed25519-dalek = "1.0.1"
rand = "0.7.3"
ring-compat = "0.5.1"
[features]
default = ["sodium_oxide"]
sodium_oxide = ["sodiumoxide"]