Skip to content

Commit 35a0a09

Browse files
committed
Remove locked revisions from the Cargo.toml
Locked revisions inside of a manifest generally indicate that a library is only compatible with exactly one revision of the dependent library. In general these locked revisions belong in a Cargo.lock instead of a Cargo.toml. By including a locked revision, the dependency graph is forked such that postgres will have its own copy of all of its dependencies, while all other users of, for example, rust-openssl will get a different copy (the sources are different). This package is in general compatible with the current master branch of its dependencies, and applications will have locked versions of all these dependencies regardless.
1 parent 3a74574 commit 35a0a09

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ path = "tests/test.rs"
1414

1515
[dependencies.openssl]
1616
git = "https://github.com/sfackler/rust-openssl"
17-
rev = "cd40d25cb5721064c5c2002c41a616d2dba7399a"
1817

1918
[dependencies.phf]
2019
git = "https://github.com/sfackler/rust-phf"
21-
rev = "af0a11c92bd531c9677bef31f6a6d8c4b59ad29b"
2220

2321
[dependencies.phf_mac]
2422
git = "https://github.com/sfackler/rust-phf"
25-
rev = "af0a11c92bd531c9677bef31f6a6d8c4b59ad29b"

0 commit comments

Comments
 (0)