Skip to content

Commit 8cf7f3a

Browse files
authored
Merge pull request sfackler#1130 from paolobarbolini/spdx
Make license metadata SPDX compliant
2 parents 64caf4c + 3836a30 commit 8cf7f3a

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

postgres-derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "postgres-derive"
33
version = "0.4.5"
44
authors = ["Steven Fackler <[email protected]>"]
5-
license = "MIT/Apache-2.0"
5+
license = "MIT OR Apache-2.0"
66
edition = "2018"
77
description = "An internal crate used by postgres-types"
88
repository = "https://github.com/sfackler/rust-postgres"
@@ -15,4 +15,4 @@ test = false
1515
syn = "2.0"
1616
proc-macro2 = "1.0"
1717
quote = "1.0"
18-
heck = "0.4"
18+
heck = "0.4"

postgres-native-tls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "postgres-native-tls"
33
version = "0.5.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6-
license = "MIT/Apache-2.0"
6+
license = "MIT OR Apache-2.0"
77
description = "TLS support for tokio-postgres via native-tls"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"

postgres-openssl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "postgres-openssl"
33
version = "0.5.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6-
license = "MIT/Apache-2.0"
6+
license = "MIT OR Apache-2.0"
77
description = "TLS support for tokio-postgres via openssl"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"

postgres-protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.6.6"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
66
description = "Low level Postgres protocol APIs"
7-
license = "MIT/Apache-2.0"
7+
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"
1010

postgres-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "postgres-types"
33
version = "0.2.6"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6-
license = "MIT/Apache-2.0"
6+
license = "MIT OR Apache-2.0"
77
description = "Conversions between Rust and Postgres values"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"

postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "postgres"
33
version = "0.19.7"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6-
license = "MIT/Apache-2.0"
6+
license = "MIT OR Apache-2.0"
77
description = "A native, synchronous PostgreSQL client"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"

tokio-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "tokio-postgres"
33
version = "0.7.10"
44
authors = ["Steven Fackler <[email protected]>"]
55
edition = "2018"
6-
license = "MIT/Apache-2.0"
6+
license = "MIT OR Apache-2.0"
77
description = "A native, asynchronous PostgreSQL client"
88
repository = "https://github.com/sfackler/rust-postgres"
99
readme = "../README.md"

0 commit comments

Comments
 (0)