-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (28 loc) · 943 Bytes
/
Cargo.toml
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
[package]
name = "unisub"
version = "0.1.2"
edition = "2018"
description = "A Pub/Sub library for Rust backed by Postgres"
authors = ["Nicholas Rempel <[email protected]>"]
license = "MIT"
repository = "https://github.com/nrempel/unisub"
homepage = "https://nrempel.com"
documentation = "https://docs.rs/unisub"
keywords = ["queue", "pub-sub", "postgres"]
categories = ["asynchronous", "database", "web-programming"]
include = ["src/**/*", "migrations/**/*", ".sqlx/*.json"]
readme = "README.md"
[[bin]]
name = "unisub"
path = "src/bin/main.rs"
[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
futures-util = "0.3.28"
sqlx = { version = "0.7.2", features = ["postgres", "runtime-tokio-native-tls", "migrate"] }
thiserror = "1.0.49"
tokio = { version = "1.32.0", features = ["full"] }
tokio-stream = "0.1.14"
tokio-util = "0.7.9"
[dev-dependencies]
serde = { version = "1.0.188", features = ["derive"] }
bincode = "1.3.3"