Skip to content

Commit 802f4d4

Browse files
authored
Merge pull request #10 from matheuscamposmt/main
feat: add modular multi-database support with SSL/TLS and Redshift driver
2 parents d8423ae + 0ad13e8 commit 802f4d4

File tree

18 files changed

+746
-75
lines changed

18 files changed

+746
-75
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ dist-ssr
3030
# Local sled databases
3131
project_db
3232
query_db
33+
34+
/src-tauri/project_db# Local databases (should never be committed)
35+
src-tauri/project_db/
36+
src-tauri/query_db/

src-tauri/Cargo.lock

Lines changed: 183 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ serde = { version = "1", features = ["derive"] }
2424
serde_json = "1"
2525
tokio = "1.47.1"
2626
tokio-postgres = "0.7.13"
27+
postgres-native-tls = "0.5"
28+
native-tls = "0.2"
2729
chrono = "0.4.42"
2830
sled = "0.34.7"
2931
tracing = "0.1.41"

0 commit comments

Comments
 (0)