-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (37 loc) · 1.52 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
[package]
name = "animus-subject-postgres"
version = "0.2.1"
edition = "2021"
license = "Elastic-2.0"
description = "Dynamic, schema-driven Postgres subject store for Animus (a BaaS) — kinds declared at runtime, one subjects table + JSONB data column, with managed subject defaults"
repository = "https://github.com/launchapp-dev/animus-subject-postgres"
homepage = "https://github.com/launchapp-dev/animus-cli"
readme = "README.md"
default-run = "animus-subject-postgres"
[lib]
name = "animus_subject_postgres"
path = "src/lib.rs"
[[bin]]
name = "animus-subject-postgres"
path = "src/main.rs"
[dependencies]
regex = "1"
animus-plugin-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.5.13" }
animus-subject-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.5.13" }
animus-plugin-runtime = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.5.13" }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "fs", "io-util", "io-std"] }
tokio-stream = { version = "0.1", features = ["sync"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
async-trait = "0.1"
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "postgres", "json", "chrono"] }
parking_lot = "0.12"
futures-core = "0.3"
url = "2"
[dev-dependencies]
tempfile = "3"