mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 17:03:43 +02:00
* first commit * cleared errors * added init * adding macos * finished import * fixed macos aes * fixed lib * improved openssl integration * fixed multithreading bug * broke something * fixed bug * got compilation working * fixed threadsafety issue
36 lines
940 B
TOML
36 lines
940 B
TOML
[package]
|
|
name = "openssl-sys"
|
|
version = "0.9.80"
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
"Steven Fackler <sfackler@gmail.com>",
|
|
]
|
|
license = "MIT"
|
|
description = "FFI bindings to OpenSSL"
|
|
repository = "https://github.com/sfackler/rust-openssl"
|
|
readme = "README.md"
|
|
categories = ["cryptography", "external-ffi-bindings"]
|
|
links = "openssl"
|
|
build = "build/main.rs"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
vendored = ['openssl-src']
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
#bssl-sys = { version = "0.1.0", optional = true }#package does not seem needed for ZT
|
|
|
|
[build-dependencies]
|
|
bindgen = { version = "0.64.0", optional = true }
|
|
cc = "1.0"
|
|
openssl-src = { version = "300.0.12", optional = true }
|
|
pkg-config = "0.3.9"
|
|
autocfg = "1.0"
|
|
|
|
[target.'cfg(target_env = "msvc")'.build-dependencies]
|
|
vcpkg = "0.2.8"
|
|
|
|
# We don't actually use metadeps for annoying reasons but this is still here for tooling
|
|
[package.metadata.pkg-config]
|
|
openssl = "1.1.0"
|