aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-11-22 14:57:13 -0800
committerSteven Fackler <[email protected]>2014-11-22 14:57:13 -0800
commit178d0f0c8e503b4eecb6ec5c118922ad52606c60 (patch)
treed0d60c90220dc078babd158a0952b16a4825db6f
parentAdd license and description (diff)
downloadrust-openssl-178d0f0c8e503b4eecb6ec5c118922ad52606c60.tar.xz
rust-openssl-178d0f0c8e503b4eecb6ec5c118922ad52606c60.zip
Update stuff for upload to registry
-rw-r--r--Cargo.toml17
-rw-r--r--openssl-sys/Cargo.toml12
2 files changed, 18 insertions, 11 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d4ed9b3e..733c63c2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,8 @@
[package]
-
name = "openssl"
-version = "0.0.1"
+version = "0.0.2"
authors = ["Steven Fackler <[email protected]"]
-license = "ASL2.0"
+license = "Apache-2.0"
description = "OpenSSL bindings"
[features]
@@ -14,26 +13,30 @@ aes_xts = ["openssl-sys/aes_xts"]
[target.i686-apple-darwin.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.x86_64-apple-darwin.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.i686-unknown-linux-gnu.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.x86_64-unknown-linux-gnu.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.i686-unknown-freebsd.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.x86_64-unknown-freebsd.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.arm-apple-ios.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.i386-apple-ios.dependencies.openssl-sys]
path = "openssl-sys"
+version = "0.0.2"
[target.le32-unknown-nacl.dependencies.libressl-pnacl-sys]
-git = "https://github.com/DiamondLovesYou/libressl-pnacl-sys.git"
[target.arm-unknown-nacl.dependencies.libressl-pnacl-sys]
-git = "https://github.com/DiamondLovesYou/libressl-pnacl-sys.git"
[target.i686-unknown-nacl.dependencies.libressl-pnacl-sys]
-git = "https://github.com/DiamondLovesYou/libressl-pnacl-sys.git"
[target.x86_64-unknown-nacl.dependencies.libressl-pnacl-sys]
-git = "https://github.com/DiamondLovesYou/libressl-pnacl-sys.git"
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index 27d8879f..8c8011b6 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -1,8 +1,12 @@
[package]
name = "openssl-sys"
-version = "0.0.1"
-authors = ["Alex Crichton <[email protected]>"]
+version = "0.0.2"
+authors = ["Alex Crichton <[email protected]>",
+ "Steven Fackler <[email protected]>"]
+license = "Apache-2.0"
+description = "FFI bindings to OpenSSL"
+
links = "openssl"
build = "src/build.rs"
@@ -12,5 +16,5 @@ tlsv1_1 = []
sslv2 = []
aes_xts = []
-[build-dependencies.pkg-config]
-git = "https://github.com/alexcrichton/pkg-config-rs"
+[build-dependencies]
+pkg-config = "*"