libtls 0.0.1

Basic Rust bindings to OpenBSD's libtls
Documentation
# This file is released under the same terms as Rust itself.

[package]
name = "libtls"
version = "0.0.1"
authors = ["Michael Howell <michael@notriddle.com>"]
license = "MIT / Apache-2.0"
description = "Basic Rust bindings to OpenBSD's libtls"
repository = "https://github.com/notriddle/rust-libtls"

[features]
system = [ "libtls-sys/system" ]
fallback = [ "libtls-sys/fallback" ]
default = [ "system", "fallback" ]

[dependencies]
lazy_static = "0.2.1"
quick-error = "1.0.0"

[dependencies.libtls-sys]
path = "../libtls-sys/"
version = "0.0.1"
default-features = false