Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
chore(sqldb-postgres): remove native_tls dep
Browse files Browse the repository at this point in the history
Signed-off-by: Brooks Townsend <[email protected]>

tag push

Signed-off-by: Brooks Townsend <[email protected]>
  • Loading branch information
brooksmtownsend committed Aug 8, 2023
1 parent 08867eb commit 22aa678
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 87 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sqldb-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
working-directory: ${{ env.working-directory }}

build_artifact:
# if: startswith(github.ref, 'refs/tags/') # Only run on tag push
if: startswith(github.ref, 'refs/tags/') # Only run on tag push
strategy:
fail-fast: false
matrix:
Expand Down
84 changes: 0 additions & 84 deletions sqldb-postgres/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion sqldb-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ tokio-postgres = { version = "0.7", features=["with-bit-vec-0_6", "with-chrono-0
bb8-postgres = "0.8.1"
bit-vec = "0.6"
uuid = "1.1.2"
native-tls = "0.2"
toml = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
1 change: 0 additions & 1 deletion sqldb-postgres/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}

//pub(crate) type NTLS = native_tls::TlsConnector;
pub(crate) type PgConnection = bb8_postgres::PostgresConnectionManager<NoTls>;
pub(crate) type Pool = bb8_postgres::bb8::Pool<PgConnection>;

Expand Down

0 comments on commit 22aa678

Please sign in to comment.