thingvellir 0.0.2-alpha1

a concurrent, shared-nothing abstraction that manages an assembly of things
Documentation
[package]
name = "thingvellir"
version = "0.0.2-alpha1"
authors = ["jake <jh@discordapp.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/discordapp/thingvellir"
homepage = "https://github.com/discordapp/thingvellir"
documentation = "https://docs.rs/thingvellir"
description = "a concurrent, shared-nothing abstraction that manages an assembly of things"

[features]
default = []
cassandra = ["cassandra-cpp"]
cbor = ["serde_cbor", "serde"]

[dependencies]
tokio = { version = "0.2", features = ["full"] }
fxhash = "0.2"
futures = "0.3"
smallvec = "1.2"
indexmap = { version = "1.4.0", package = "discord-indexmap" }
num_cpus = "1.0"
log = "0.4"
rand = "0.7"
failure = "0.1"
dynamic-pool = "0.2"
cassandra-cpp = { version = "0.15.1", package = "discord-cassandra-cpp", optional = true }
serde_cbor = { version = "0.11", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }

[dev-dependencies]
tokio-test = "0.2"

[[example]]
name = "cassandra"
required-features = ["cassandra"]