Monorepo for Tangled
Something went wrong. Try again.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195[workspace]resolver = "3"members = ["bobbin/crates/*", "crates/*", "shuttle", "knot2/crates/*"]exclude = ["sites"]
[workspace.package]version = "0.0.1"edition = "2024"rust-version = "1.96"license = "MIT"authors = [ "Lewis <lewis@tangled.org>", "Seongmin Lee <git@boltless.me>", "oppiliappan <me@oppi.li>", "Anirudh Oppiliappan <anirudh@tangled.org>", "eti <eti@eti.tf>", "dawn <dawn@tangled.org>",]
[workspace.lints.rust]unsafe_code = "forbid"unused_must_use = "deny"
[workspace.lints.clippy]dbg_macro = "warn"todo = "warn"print_stdout = "deny"print_stderr = "warn"
[workspace.dependencies]trusted-proxies = { path = "crates/trusted-proxies" }
bobbin-types = { path = "bobbin/crates/types" }bobbin-edge-index = { path = "bobbin/crates/edge-index" }bobbin-ingest = { path = "bobbin/crates/ingest" }bobbin-resolver = { path = "bobbin/crates/resolver" }bobbin-slingshot-client = { path = "bobbin/crates/slingshot-client" }bobbin-record-lru = { path = "bobbin/crates/record-lru" }bobbin-knot-proxy = { path = "bobbin/crates/knot-proxy" }bobbin-knot-ingest = { path = "bobbin/crates/knot-ingest" }bobbin-runtime = { path = "bobbin/crates/runtime" }bobbin-search = { path = "bobbin/crates/search" }bobbin-sim = { path = "bobbin/crates/bobbin-sim" }bobbin-xrpc = { path = "bobbin/crates/xrpc" }
knot-fixtures = { path = "knot2/crates/knot-fixtures" }knot-lexicons = { path = "knot2/crates/knot-lexicons" }knot-types = { path = "knot2/crates/knot-types" }knot-resource = { path = "knot2/crates/knot-resource" }knot-config = { path = "knot2/crates/knot-config" }knot-runtime = { path = "knot2/crates/knot-runtime" }knot-git = { path = "knot2/crates/knot-git" }knot-langs = { path = "knot2/crates/knot-langs" }knot-lfs = { path = "knot2/crates/knot-lfs" }knot-workflow = { path = "knot2/crates/knot-workflow" }knot-pack = { path = "knot2/crates/knot-pack" }knot-cob = { path = "knot2/crates/knot-cob" }knot-cobs = { path = "knot2/crates/knot-cobs" }knot-index = { path = "knot2/crates/knot-index" }knot-keyfill = { path = "knot2/crates/knot-keyfill" }knot-cache = { path = "knot2/crates/knot-cache" }knot-acl = { path = "knot2/crates/knot-acl" }knot-atproto = { path = "knot2/crates/knot-atproto" }knot-messages = { path = "knot2/crates/knot-messages" }knot-postreceive = { path = "knot2/crates/knot-postreceive" }knot-receive = { path = "knot2/crates/knot-receive" }knot-ssh = { path = "knot2/crates/knot-ssh" }knot-secrets = { path = "knot2/crates/knot-secrets" }knot-events = { path = "knot2/crates/knot-events" }knot-xrpc = { path = "knot2/crates/knot-xrpc" }knot-bench = { path = "knot2/crates/knot-bench" }knot-maintenance = { path = "knot2/crates/knot-maintenance" }knot-sim = { path = "knot2/crates/knot-sim" }knot-edge = { path = "knot2/crates/knot-edge" }
jacquard-common = "0.12.1"jacquard-derive = "0.12.1"jacquard-lexicon = { version = "0.12.1", default-features = false }jacquard-repo = "0.12.1"
gix = { version = "0.84", features = ["parallel", "revision", "blob-diff", "worktree-archive", "tree-editor", "sha1", "sha256"] }gix-pack = { version = "0.71", default-features = false, features = ["generate", "streaming-input", "sha1", "sha256"] }gix-packetline = { version = "0.21", features = ["blocking-io"] }gix-archive = "0.33"gix-hash = { version = "0.25", features = ["sha1", "sha256"] }flate2 = "1"
anyhow = "1"miette = "7"walkdir = "2"
tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "time", "signal", "io-util", "net", "sync"] }tokio-util = { version = "0.7", features = ["rt"] }tokio-stream = "0.1"tokio-tungstenite = { version = "0.29", features = ["rustls-tls-webpki-roots"] }futures = "0.3"either = "1"async-trait = "0.1"
serde = { version = "1", features = ["derive"] }serde_json = { version = "1", features = ["raw_value"] }serde_ipld_dagcbor = "0.6"serde_norway = "0.9"
chrono = { version = "0.4", features = ["serde"] }cid = "0.11"url = { version = "2", features = ["serde"] }bytes = "1"
scc = "3"roaring = "0.11"lasso = { version = "0.7", features = ["multi-threaded"] }quick_cache = "0.6"moka = { version = "0.12", features = ["sync", "future"] }getrandom = "0.4"ahash = { version = "0.8", default-features = false, features = ["std"] }arc-swap = "1"
reqwest = { version = "0.13", default-features = false, features = ["rustls", "webpki-roots", "http2", "json", "gzip", "stream"] }axum = "0.8"hyper = { version = "1", features = ["server", "http1", "http2"] }hyper-util = { version = "0.1", features = ["server", "server-auto", "tokio", "service"] }tower = { version = "0.5", features = ["util", "limit", "load-shed"] }tower-http = { version = "0.7", default-features = false }tower_governor = { version = "0.8", default-features = false, features = ["axum"] }governor = "0.10"http = "1"http-body = "1"httpdate = "1"ipnet = "2.10"
rustls = { version = "0.23", features = ["aws_lc_rs", "prefer-post-quantum"] }tokio-rustls = { version = "0.26", default-features = false, features = ["aws_lc_rs", "tls12", "logging"] }rustls-pemfile = "2"rustls-acme = { version = "0.15.3", default-features = false, features = ["aws-lc-rs", "tls12", "webpki-roots"] }x509-parser = "0.18"quinn = { version = "0.11.9", default-features = false, features = ["runtime-tokio", "rustls-aws-lc-rs", "log"] }h3 = "0.0.8"h3-quinn = "0.0.10"rcgen = { version = "0.14", default-features = false, features = ["aws_lc_rs", "pem"] }hickory-resolver = "0.24"
k256 = { version = "0.13", features = ["ecdsa"] }aes-gcm = "0.11.0-rc.4"hkdf = "0.13"sha2 = "0.11"base32 = "0.5"base64 = "0.22"bs58 = "0.5"zeroize = { version = "1", features = ["derive"] }subtle = "2.6"
wiremock = "0.6"tempfile = "3"proptest = "1"divan = "0.1.21"
tantivy = "0.26"gengo-language = "0.14"regex = "1"globset = "0.4"rustix = { version = "1.1", features = ["process"] }tikv-jemallocator = "0.7"tikv-jemalloc-ctl = "0.7"
tracing = "0.1"tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
thiserror = "2"
confique = { version = "0.4", default-features = false, features = ["toml"] }clap = { version = "4", features = ["derive", "env"] }toml = { version = "0.9", default-features = false, features = ["parse"] }
[patch.crates-io]gix-pack = { path = "knot2/third_party/gix-pack" }
[profile.dev]opt-level = 1
[profile.release]lto = "fat"strip = truecodegen-units = 1
[profile.bench]debug = 1strip = false
[profile.profiling]inherits = "release"debug = 1strip = falselto = "thin"