This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1[workspace] 2resolver = "2" 3members = [ 4 "crates/types", 5 "crates/edge-index", 6 "crates/ingest", 7] 8 9[workspace.package] 10version = "0.0.1" 11edition = "2024" 12license = "AGPL-3.0-or-later" 13rust-version = "1.95" 14 15[workspace.dependencies] 16bobbin-types = { path = "crates/types" } 17bobbin-edge-index = { path = "crates/edge-index" } 18bobbin-ingest = { path = "crates/ingest" } 19 20jacquard-common = "0.12.0-beta.2" 21jacquard-derive = "0.12.0-beta.2" 22jacquard-lexicon = { version = "0.12.0-beta.2", default-features = false } 23 24anyhow = "1" 25miette = "7" 26walkdir = "2" 27 28tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "time", "signal", "io-util", "sync"] } 29tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] } 30futures = "0.3" 31 32serde = { version = "1", features = ["derive"] } 33serde_json = "1" 34serde_ipld_dagcbor = "0.6" 35 36chrono = { version = "0.4", features = ["serde"] } 37cid = "0.11" 38url = "2" 39 40scc = "3" 41roaring = "0.11" 42lasso = { version = "0.7", features = ["multi-threaded"] } 43 44tracing = "0.1" 45 46thiserror = "2" 47 48[profile.release] 49lto = "fat" 50strip = true 51codegen-units = 1 52panic = "abort" 53 54[profile.bench] 55debug = 1 56strip = false