Skip to content

Commit

Permalink
Merge pull request #2632 from calebschoepp/outbound-pg-factor
Browse files Browse the repository at this point in the history
Outbound pg factor
  • Loading branch information
calebschoepp authored Jul 17, 2024
2 parents 98f2298 + 112c4e4 commit 14f8a58
Show file tree
Hide file tree
Showing 5 changed files with 572 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Cargo.lock

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

27 changes: 27 additions & 0 deletions crates/factor-outbound-pg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[package]
name = "spin-factor-outbound-pg"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }

[dependencies]
anyhow = "1.0"
native-tls = "0.2.11"
postgres-native-tls = "0.5.0"
spin-core = { path = "../core" }
spin-factor-outbound-networking = { path = "../factor-outbound-networking" }
spin-factors = { path = "../factors" }
spin-world = { path = "../world" }
table = { path = "../table" }
tokio = { version = "1", features = ["rt-multi-thread"] }
tokio-postgres = "0.7.7"
tracing = { workspace = true }

[dev-dependencies]
spin-factor-variables = { path = "../factor-variables" }
spin-factor-wasi = { path = "../factor-wasi" }
spin-factors-test = { path = "../factors-test" }
tokio = { version = "1", features = ["macros", "rt"] }

[lints]
workspace = true
Loading

0 comments on commit 14f8a58

Please sign in to comment.