This repository has no description
0

Configure Feed

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

core / Cargo.toml
6.7 kB 195 lines
1[workspace] 2resolver = "3" 3members = ["bobbin/crates/*", "crates/*", "shuttle", "knot2/crates/*"] 4default-members = ["bobbin/crates/*", "crates/*", "knot2/crates/*"] 5exclude = ["sites"] 6 7[workspace.package] 8version = "0.0.1" 9edition = "2024" 10rust-version = "1.96" 11license = "MIT" 12authors = [ 13 "Lewis <lewis@tangled.org>", 14 "Seongmin Lee <git@boltless.me>", 15 "oppiliappan <me@oppi.li>", 16 "Anirudh Oppiliappan <anirudh@tangled.org>", 17 "eti <eti@eti.tf>", 18 "dawn <dawn@tangled.org>", 19] 20 21[workspace.lints.rust] 22unsafe_code = "forbid" 23unused_must_use = "deny" 24 25[workspace.lints.clippy] 26dbg_macro = "warn" 27todo = "warn" 28print_stdout = "deny" 29print_stderr = "warn" 30 31[workspace.dependencies] 32trusted-proxies = { path = "crates/trusted-proxies" } 33 34bobbin-types = { path = "bobbin/crates/types" } 35bobbin-edge-index = { path = "bobbin/crates/edge-index" } 36bobbin-ingest = { path = "bobbin/crates/ingest" } 37bobbin-resolver = { path = "bobbin/crates/resolver" } 38bobbin-slingshot-client = { path = "bobbin/crates/slingshot-client" } 39bobbin-record-lru = { path = "bobbin/crates/record-lru" } 40bobbin-knot-proxy = { path = "bobbin/crates/knot-proxy" } 41bobbin-knot-ingest = { path = "bobbin/crates/knot-ingest" } 42bobbin-runtime = { path = "bobbin/crates/runtime" } 43bobbin-search = { path = "bobbin/crates/search" } 44bobbin-sim = { path = "bobbin/crates/bobbin-sim" } 45bobbin-xrpc = { path = "bobbin/crates/xrpc" } 46 47knot-fixtures = { path = "knot2/crates/knot-fixtures" } 48knot-lexicons = { path = "knot2/crates/knot-lexicons" } 49knot-types = { path = "knot2/crates/knot-types" } 50knot-resource = { path = "knot2/crates/knot-resource" } 51knot-config = { path = "knot2/crates/knot-config" } 52knot-runtime = { path = "knot2/crates/knot-runtime" } 53knot-git = { path = "knot2/crates/knot-git" } 54knot-langs = { path = "knot2/crates/knot-langs" } 55knot-lfs = { path = "knot2/crates/knot-lfs" } 56knot-workflow = { path = "knot2/crates/knot-workflow" } 57knot-pack = { path = "knot2/crates/knot-pack" } 58knot-cob = { path = "knot2/crates/knot-cob" } 59knot-cobs = { path = "knot2/crates/knot-cobs" } 60knot-index = { path = "knot2/crates/knot-index" } 61knot-cache = { path = "knot2/crates/knot-cache" } 62knot-acl = { path = "knot2/crates/knot-acl" } 63knot-atproto = { path = "knot2/crates/knot-atproto" } 64knot-messages = { path = "knot2/crates/knot-messages" } 65knot-postreceive = { path = "knot2/crates/knot-postreceive" } 66knot-receive = { path = "knot2/crates/knot-receive" } 67knot-ssh = { path = "knot2/crates/knot-ssh" } 68knot-secrets = { path = "knot2/crates/knot-secrets" } 69knot-events = { path = "knot2/crates/knot-events" } 70knot-xrpc = { path = "knot2/crates/knot-xrpc" } 71knot-bench = { path = "knot2/crates/knot-bench" } 72knot-maintenance = { path = "knot2/crates/knot-maintenance" } 73knot-sim = { path = "knot2/crates/knot-sim" } 74knot-edge = { path = "knot2/crates/knot-edge" } 75 76jacquard-common = "0.12.1" 77jacquard-derive = "0.12.1" 78jacquard-lexicon = { version = "0.12.1", default-features = false } 79jacquard-identity = { version = "0.12.1", features = ["cache"] } 80jacquard-repo = "0.12.1" 81 82gix = { version = "0.84", features = ["parallel", "revision", "blob-diff", "worktree-archive", "tree-editor", "sha1", "sha256"] } 83gix-pack = { version = "0.71", default-features = false, features = ["generate", "streaming-input", "sha1", "sha256"] } 84gix-packetline = { version = "0.21", features = ["blocking-io"] } 85gix-archive = "0.33" 86gix-hash = { version = "0.25", features = ["sha1", "sha256"] } 87flate2 = "1" 88 89anyhow = "1" 90miette = "7" 91walkdir = "2" 92 93tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "time", "signal", "io-util", "net", "sync"] } 94tokio-util = { version = "0.7", features = ["rt"] } 95tokio-stream = "0.1" 96tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] } 97futures = "0.3" 98either = "1" 99async-trait = "0.1" 100 101serde = { version = "1", features = ["derive"] } 102serde_json = { version = "1", features = ["raw_value"] } 103serde_ipld_dagcbor = "0.6" 104serde_norway = "0.9" 105 106chrono = { version = "0.4", features = ["serde"] } 107cid = "0.11" 108url = { version = "2", features = ["serde"] } 109bytes = "1" 110 111scc = "3" 112roaring = "0.11" 113lasso = { version = "0.7", features = ["multi-threaded"] } 114quick_cache = "0.6" 115moka = { version = "0.12", features = ["sync", "future"] } 116getrandom = "0.4" 117ahash = { version = "0.8", default-features = false, features = ["std"] } 118arc-swap = "1" 119 120reqwest = { version = "0.13", default-features = false, features = ["rustls", "webpki-roots", "http2", "json", "gzip", "stream"] } 121axum = "0.8" 122hyper = { version = "1", features = ["server", "http1", "http2"] } 123hyper-util = { version = "0.1", features = ["server", "server-auto", "tokio", "service"] } 124tower = { version = "0.5", features = ["util", "limit", "load-shed"] } 125tower-http = { version = "0.7", default-features = false } 126tower_governor = { version = "0.8", default-features = false, features = ["axum"] } 127governor = "0.10" 128http = "1" 129http-body = "1" 130httpdate = "1" 131ipnet = "2.10" 132 133rustls = { version = "0.23", features = ["aws_lc_rs", "prefer-post-quantum"] } 134tokio-rustls = { version = "0.26", default-features = false, features = ["aws_lc_rs", "tls12", "logging"] } 135rustls-pemfile = "2" 136rustls-acme = { version = "0.15.3", default-features = false, features = ["aws-lc-rs", "tls12", "webpki-roots"] } 137x509-parser = "0.18" 138quinn = { version = "0.11.9", default-features = false, features = ["runtime-tokio", "rustls-aws-lc-rs", "log"] } 139h3 = "0.0.8" 140h3-quinn = "0.0.10" 141rcgen = { version = "0.14", default-features = false, features = ["aws_lc_rs", "pem"] } 142hickory-resolver = "0.24" 143 144k256 = { version = "0.13", features = ["ecdsa"] } 145aes-gcm = "0.11.0-rc.4" 146hkdf = "0.13" 147sha2 = "0.11" 148base32 = "0.5" 149base64 = "0.22" 150bs58 = "0.5" 151zeroize = { version = "1", features = ["derive"] } 152subtle = "2.6" 153 154wiremock = "0.6" 155tempfile = "3" 156proptest = "1" 157divan = "0.1.21" 158 159tantivy = "0.26" 160gengo-language = "0.14" 161regex = "1" 162globset = "0.4" 163rustix = { version = "1.1", features = ["process"] } 164tikv-jemallocator = "0.7" 165tikv-jemalloc-ctl = "0.7" 166 167tracing = "0.1" 168tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] } 169 170thiserror = "2" 171 172confique = { version = "0.4", default-features = false, features = ["toml"] } 173clap = { version = "4", features = ["derive", "env"] } 174toml = { version = "0.9", default-features = false, features = ["parse"] } 175 176[patch.crates-io] 177gix-pack = { path = "knot2/third_party/gix-pack" } 178 179[profile.dev] 180opt-level = 1 181 182[profile.release] 183lto = "fat" 184strip = true 185codegen-units = 1 186 187[profile.bench] 188debug = 1 189strip = false 190 191[profile.profiling] 192inherits = "release" 193debug = 1 194strip = false 195lto = "thin"