0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 00:46:45 +01:00
posthog/rust/cyclotron-fetch/Cargo.toml
Oliver Browne 9734a40c96
feat: cyclotron (#24228)
Co-authored-by: Brett Hoerner <brett@bretthoerner.com>
Co-authored-by: Ben White <ben@posthog.com>
2024-08-21 12:24:56 -06:00

32 lines
832 B
TOML

[package]
name = "cyclotron-fetch"
version = "0.1.0"
edition = "2021"
[lints]
workspace = true
[dependencies]
tracing-subscriber = { workspace = true }
chrono = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
envconfig = { workspace = true }
axum = { workspace = true }
thiserror = { workspace = true }
metrics = { workspace = true }
cyclotron-core = { path = "../cyclotron-core" }
common-metrics = { path = "../common/metrics" }
common-dns = { path = "../common/dns" }
health = { path = "../common/health" }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
http = { workspace = true }
rand = { workspace = true }
futures = { workspace = true }
[dev-dependencies]
sqlx = { workspace = true }
httpmock = { workspace = true }