forked from
microcosm.blue/microcosm-rs
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
1[package]
2authors = ["videah <videah@selfish.systems>", "phil <phil@bad-example.com>"]
3name = "jetstream"
4version = "0.1.1"
5edition = "2021"
6license = "MIT"
7description = "Library for easily interacting with and consuming the Bluesky Jetstream service."
8repository = "https://github.com/at-microcosm/links"
9readme = "README.md"
10
11[dependencies]
12async-trait = "0.1.83"
13atrium-api = { git = "https://github.com/uniphil/atrium.git", branch = "fix/resolve-handle-https-accept-whitespace", default-features = false, features = [
14 "namespace-appbsky",
15] }
16tokio = { version = "1.44.2", features = ["full", "sync", "time"] }
17tokio-tungstenite = { version = "0.26.2", features = [
18 "connect",
19 "native-tls-vendored",
20 "url",
21] }
22futures-util = "0.3.31"
23metrics = { version = "0.24.2", optional = true }
24url = "2.5.4"
25serde = { version = "1.0.215", features = ["derive"] }
26serde_json = { version = "1.0.140", features = ["raw_value"] }
27chrono = "0.4.38"
28zstd = "0.13.2"
29thiserror = "2.0.3"
30log = "0.4.22"
31
32[dev-dependencies]
33anyhow = "1.0.93"
34clap = { version = "4.5.20", features = ["derive"] }
35
36[features]
37default = []
38metrics = ["dep:metrics"]