Scalable and distributed custom feed generator, ott - on that topic
1[package]
2name = "ott-embed"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7anyhow = "1.0.100"
8fluvio = "0.50.1"
9ott-types = { version = "0.1.0", path = "../ott-types" }
10pgvector = { version = "0.4", features = ["sqlx"] }
11reqwest = { version = "0.12.23", features = ["json"] }
12serde = { version = "1.0.226", features = ["derive"] }
13serde_json = "1.0.145"
14sqlx = { version = "0.8.6", features = [ "postgres", "runtime-tokio", "tls-native-tls" ] }
15tokio = { version = "1.47.1", features = ["full", "sync"] }
16tokio-stream = "0.1.17"
17tracing = "0.1.41"
18tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
19
20[dev-dependencies]
21rstest = "0.26.1"