This repository has no description
0

Configure Feed

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

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