solana/sdk/Cargo.toml
dependabot-preview[bot] 1e3082fbc0 Bump tiny-bip39 from 0.6.2 to 0.7.0 (#7750)
Bumps [tiny-bip39](https://github.com/maciejhirsz/tiny-bip39) from 0.6.2 to 0.7.0.
- [Release notes](https://github.com/maciejhirsz/tiny-bip39/releases)
- [Changelog](https://github.com/maciejhirsz/tiny-bip39/blob/master/CHANGELOG.md)
- [Commits](https://github.com/maciejhirsz/tiny-bip39/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-01-10 09:19:28 -07:00

57 lines
1.7 KiB
TOML

[package]
name = "solana-sdk"
version = "0.23.0"
description = "Solana SDK"
authors = ["Solana Maintainers <maintainers@solana.com>"]
repository = "https://github.com/solana-labs/solana"
homepage = "https://solana.com/"
license = "Apache-2.0"
edition = "2018"
[features]
# On-chain program specific dependencies
program = []
# Dependencies that are not compatible or needed for on-chain programs
default = [
"assert_matches",
"byteorder",
"memmap",
"rand",
"rand_chacha",
"serde_json",
"ed25519-dalek",
"solana-logger",
"solana-crate-features"
]
[dependencies]
assert_matches = { version = "1.3.0", optional = true }
bincode = "1.2.1"
bs58 = "0.3.0"
bv = { version = "0.11.0", features = ["serde"] }
byteorder = { version = "1.3.2", optional = true }
generic-array = { version = "0.13.2", default-features = false, features = ["serde", "more_lengths"] }
hex = "0.4.0"
hmac = "0.7.0"
itertools = { version = "0.8.2" }
log = { version = "0.4.8" }
memmap = { version = "0.6.2", optional = true }
num-derive = { version = "0.3" }
num-traits = { version = "0.2" }
pbkdf2 = { version = "0.3.0", default-features = false }
rand = { version = "0.6.5", optional = true }
rand_chacha = { version = "0.1.1", optional = true }
serde = "1.0.104"
serde_bytes = "0.11"
serde_derive = "1.0.103"
serde_json = { version = "1.0.44", optional = true }
sha2 = "0.8.1"
thiserror = "1.0"
ed25519-dalek = { version = "=1.0.0-pre.1", optional = true }
solana-crate-features = { path = "../crate-features", version = "0.23.0", optional = true }
solana-logger = { path = "../logger", version = "0.23.0", optional = true }
solana-sdk-macro = { path = "macro", version = "0.23.0" }
[dev-dependencies]
tiny-bip39 = "0.7.0"