2019-03-15 18:42:47 -05:00
|
|
|
[package]
|
|
|
|
name = "solana-kvstore"
|
|
|
|
description = "Embedded Key-Value store for solana"
|
2019-04-16 02:50:20 +00:00
|
|
|
version = "0.14.0"
|
2019-03-15 18:42:47 -05:00
|
|
|
homepage = "https://solana.com/"
|
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-04-08 12:55:18 -07:00
|
|
|
bincode = "1.1.3"
|
2019-03-15 18:42:47 -05:00
|
|
|
byteorder = "1.3.1"
|
|
|
|
chrono = "0.4.0"
|
|
|
|
crc = "1.8.1"
|
|
|
|
memmap = "0.7.0"
|
|
|
|
rand = "0.6.5"
|
2019-04-03 16:52:37 +00:00
|
|
|
serde = "1.0.90"
|
2019-04-04 02:29:13 +00:00
|
|
|
serde_derive = "1.0.90"
|
2019-03-15 18:42:47 -05:00
|
|
|
|
2019-03-21 11:38:29 -05:00
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.0.7"
|