-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
34 lines (29 loc) · 949 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
[package]
name = "stellar-strkey"
description = "Encode and decode strkeys for Stellar."
homepage = "https://github.com/stellar/rs-stellar-strkey"
repository = "https://github.com/stellar/rs-stellar-strkey"
authors = ["Stellar Development Foundation <info@stellar.org>"]
license = "Apache-2.0"
readme = "README.md"
version = "0.0.12"
edition = "2021"
rust-version = "1.81.0"
[features]
default = []
cli = ["dep:clap"]
serde = ["dep:serde_with"]
[[bin]]
name = "stellar-strkey"
path = "src/bin/stellar-strkey/main.rs"
required-features = ["cli"]
doctest = false
[build-dependencies]
crate-git-revision = "0.0.6"
[dev-dependencies]
proptest ="1.0.0"
serde_test = "1.0.177"
[dependencies]
data-encoding = { version = "2.6.0", default-features = false, features = ["alloc"] }
clap = { version = "4.2.4", default-features = false, features = ["std", "derive", "usage", "help"], optional = true }
serde_with = { version = "3.11.0", optional = true }