Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
81c6b31
path-merge-strategy + aws config
ozitrance Jun 22, 2026
3e965bc
presigned-urls for fragment downloads
ozitrance Jun 22, 2026
5c22ca4
proto regen ?
ozitrance Jun 27, 2026
f7967f2
Merge branch 'EpicGames:main' into path-merge-strategy
ozitrance Jun 27, 2026
4c5fef0
Fix wrong repo created value parsing on `lore repository info` (secs/…
ozitrance Jun 28, 2026
6d2d05d
spacesync hooks
ozitrance Jul 4, 2026
1bee4e4
ContentDiff in ThinClient
ozitrance Jul 4, 2026
d122bdb
renaming .lore to .spacesync
ozitrance Jul 8, 2026
32c7545
allow specifying default branch name when creating a repo
ozitrance Jul 13, 2026
9553c16
Merge branch 'EpicGames:main' into content-diff
ozitrance Jul 13, 2026
5db6612
Low-Level Memory-Based Revision Control API
ozitrance Jul 14, 2026
6b2764d
collapsing multiple state() calls to one per function
ozitrance Jul 14, 2026
9a3ab8c
Adding GRPC Contracts
ozitrance Jul 15, 2026
13fd542
events/hooks
ozitrance Jul 15, 2026
a17c48f
Merge branch 'EpicGames:main' into new-revision-api
ozitrance Jul 15, 2026
b238059
spacesync events and keyspaces
ozitrance Jul 16, 2026
28e8027
DOWNLOAD FILES INTERFACE
ozitrance Jul 17, 2026
09be5b9
Merge branch 'new-revision-api' of https://github.com/ozitrance/lore …
ozitrance Jul 17, 2026
8fd0760
Merge branch 'EpicGames:main' into new-revision-api
ozitrance Jul 17, 2026
79ec5a6
cargo
ozitrance Jul 17, 2026
a0fe3af
Merge branch 'EpicGames:main' into content-diff
ozitrance Jul 17, 2026
2744e38
Merge pull request #1 from ozitrance/new-revision-api
ozitrance Jul 17, 2026
02966fc
formatting mostly
ozitrance Jul 18, 2026
9eec899
merge paths in grpc
ozitrance Jul 23, 2026
c3d60ed
Adding RevisionDiffMode so we can choose 2 or 3 way diffs arbitrarily
ozitrance Jul 24, 2026
9a9c09e
Merge branch 'content-diff' into codex/content-diff-main-integration
ozitrance Aug 4, 2026
e913eda
option to disable presigned urls download when using composite / aws …
ozitrance Aug 4, 2026
de24743
fix indexer events after v2
ozitrance Aug 6, 2026
e09e045
Merge pull request #4 from EpicGames/main
ozitrance Aug 14, 2026
6e5d15a
invalidating cached identity
ozitrance Aug 14, 2026
532a0c8
Merge main into codex/content-diff-main-integration
ozitrance Aug 14, 2026
6e8d8dd
Merge pull request #6 from EpicGames/main
ozitrance Aug 29, 2026
cf55f58
Merge remote-tracking branch 'origin/main' into codex/content-diff-ma…
ozitrance Aug 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
249 changes: 227 additions & 22 deletions Cargo.lock

Large diffs are not rendered by default.

61 changes: 46 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ bitcode = { version = "0.6.9", features = ["serde"] }
bitflags = "2.9.4"
blake3 = "1.8.2"
bytes = { version = "1.11.1", features = ["serde"] }
chrono = { version = "0.4.42", default-features = false, features = ["alloc", "clock"] }
chrono = { version = "0.4.42", default-features = false, features = [
"alloc",
"clock",
] }
clap = { version = "4.5.47", features = ["derive", "string", "unicode"] }
clap-markdown = "0.1.5"
config = { version = "0.15.15", features = ["toml"], default-features = false }
Expand All @@ -67,7 +70,7 @@ enum_dispatch = "0.3.13"
tracing-appender = "0.2.3"
tracing-ecs = "0.4.1"
tracing-opentelemetry = "0.32.0"
fastcdc = "3.2.1"
fastcdc = { version = "3.2.1", features = ["tokio"] }
futures = "0.3.31"
glob-match = "0.2.1"
governor = "0.10.1"
Expand All @@ -85,17 +88,29 @@ keyring = { version = "3.6.3", features = [
libc = "0.2.175"
lz4-sys = "1.11"
zstd-sys = { version = "2.0", default-features = false, features = ["experimental"] }
memmap2 = "0.9.11"
mockall = "0.13.1"
opentelemetry = "0.31.0"
opentelemetry-otlp = { version = "0.31.0", features = ["grpc-tonic", "tls", "tls-roots"] }
opentelemetry-otlp = { version = "0.31.0", features = [
"grpc-tonic",
"tls",
"tls-roots",
] }
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
opentelemetry-semantic-conventions = { version = "0.31.0", features = ["semconv_experimental"] }
opentelemetry-semantic-conventions = { version = "0.31.0", features = [
"semconv_experimental",
] }
parking_lot = { version = "0.12.4", features = ["arc_lock"] }
pin-project = "1.1.10"
postgres = { version = "0.19.14", features = ["with-uuid-1"] }
proc-macro2 = "1"
prost = "0.14.1"
prost-types = "0.14.1"
quinn = { version = "0.11.9", default-features = false, features = ["runtime-tokio", "rustls-ring", "bloom"] }
quinn = { version = "0.11.9", default-features = false, features = [
"runtime-tokio",
"rustls-ring",
"bloom",
] }
quinn-proto = { version = "=0.11.13", default-features = false }
quote = "1.0.40"
rand = "0.9.2"
Expand All @@ -121,7 +136,10 @@ smallvec = "1.15.1"
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
serde_bytes = "0.11.17"
serde_json = { version = "1.0.143", default-features = false }
serde_with = { version = "3.14.0", default-features = false, features = ["alloc", "macros"] }
serde_with = { version = "3.14.0", default-features = false, features = [
"alloc",
"macros",
] }
serial_test = { version = "3.2.0" }
socket2 = "0.6.0"
syn = "2.0.106"
Expand All @@ -140,12 +158,22 @@ tokio = { version = "1.47.1", features = [
"sync",
"time",
] }
tokio-metrics = { version = "0.4.5", default-features = false, features = ["rt"] }
tokio-stream = { version = "0.1.17", default-features = false, features = ["sync"] }
tokio-metrics = { version = "0.4.5", default-features = false, features = [
"rt",
] }
tokio-stream = { version = "0.1.17", default-features = false, features = [
"sync",
] }
tokio-util = { version = "0.7.16", default-features = false, features = ["rt"] }
toml = "0.9.5"
trybuild = "1"
tonic = { version = "0.14.2", default-features = false, features = ["codegen", "router", "server", "tls-native-roots", "tls-webpki-roots"] }
tonic = { version = "0.14.2", default-features = false, features = [
"codegen",
"router",
"server",
"tls-native-roots",
"tls-webpki-roots",
] }
tonic-prost = "0.14.2"
tonic-prost-build = "0.14.2"
tower = { version = "0.5.2", default-features = false }
Expand All @@ -156,16 +184,19 @@ tracing-test = "0.2.5"
url = "2.5.7"
urlencoding = "2.1.3"
uuid = { version = "1.18.1", default-features = false, features = ["v4", "v7"] }
vergen = { version = "9.0.6", default-features = false, features = ["cargo", "rustc", "build", "si"] }
vergen = { version = "9.0.6", default-features = false, features = [
"cargo",
"rustc",
"build",
"si",
] }
webpki-roots = "1.0.7"
windows-sys = "0.61.0"
x509-parser = "0.18.0"
xxhash-rust = { version = "0.8.15", default-features = false, features = ["xxh3"] }
zerocopy = { version = "0.8.26", features = [
"derive",
"alloc",
"simd",
xxhash-rust = { version = "0.8.15", default-features = false, features = [
"xxh3",
] }
zerocopy = { version = "0.8.26", features = ["derive", "alloc", "simd"] }

# Note: we currently control debug symbol splitting in .cargo/config.toml

Expand Down
Loading
Loading