-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (49 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
63 lines (49 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "pg_durable"
version = "0.1.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/Azure/pg_durable"
description = "Durable SQL Functions for PostgreSQL"
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "pgrx_embed_pg_durable"
path = "./src/bin/pgrx_embed.rs"
[features]
default = ["pg17"]
pg13 = ["pgrx/pg13", "pgrx-tests/pg13" ]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14" ]
pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ]
pg18 = ["pgrx/pg18", "pgrx-tests/pg18" ]
unsafe = ["pgrx/unsafe-postgres"]
pg_test = []
[dependencies]
pgrx = "=0.16.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "serde"] }
# duroxide integration
duroxide = "=0.1.18"
duroxide-pg-opt = { git = "https://github.com/microsoft/duroxide-pg-opt.git", tag = "v0.1.16", package = "duroxide-pg-opt" }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time"] }
# For ExecuteSQL activity (connecting back to PostgreSQL)
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "json"] }
# For cron expression parsing (wait_for_schedule)
cron = "0.13"
chrono = "0.4"
# For HTTP requests (df.http)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# For duroxide tracing integration
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
pgrx-tests = "=0.16.1"
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1