Skip to content

Commit abaaf54

Browse files
committed
Metadata for tls crates
1 parent bebb315 commit abaaf54

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

postgres-native-tls/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "postgres-native-tls"
33
version = "0.1.0"
44
authors = ["Steven Fackler <[email protected]>"]
5+
license = "MIT"
6+
description = "native-tls support for the postgres crate"
7+
categories = ["database"]
58

69
[dependencies]
710
native-tls = "0.2"

postgres-native-tls/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Native TLS support for the `postgres` crate.
1+
//! `native-tls` support for the `postgres` crate.
22
pub extern crate native_tls;
33
extern crate postgres;
44

postgres-openssl/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
name = "postgres-openssl"
33
version = "0.1.0"
44
authors = ["Steven Fackler <[email protected]>"]
5+
license = "MIT"
6+
description = "openssl support for the postgres crate"
7+
categories = ["database"]
58

69
[dependencies]
710
openssl = "0.10.9"

postgres-openssl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! OpenSSL support for the `postgres` crate.
1+
//! `openssl` support for the `postgres` crate.
22
pub extern crate openssl;
33
extern crate postgres;
44

0 commit comments

Comments
 (0)