Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
78 changes: 24 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ tracing = "0.1"
# NOTE the HOST change: this rev exists only on BiloxiStudios/lore. Host and
# rev move together for BOTH deps; mixed-host or mixed-rev states are a
# fail-closed CI error (src-tauri/tests/lore_pin_contract.rs).
lore = { git = "https://github.com/BiloxiStudios/lore.git", rev = "ba92f94305df15796283755040c0bdd9b351841e" }
lore = { git = "https://github.com/BiloxiStudios/lore.git", rev = "2052749e36e1127c520a191b18141e23980b89d7" }

# REQUIRED: upstream `lore` patches quinn-proto to a vendored fork that adds
# `TransportErrorCode::is_crypto()`. A [patch] does NOT propagate through a git
# dependency, so without replicating it here `lore-transport` fails to compile
# ("no method named `is_crypto`"). Same fork, same exact commit, inside the
# lore repo. Every consumer of the `lore` crate needs this. SBAI-3685 / SBAI-5434 / SBAI-5473 / SBAI-5488 / SBAI-5490.
[patch.crates-io]
quinn-proto = { git = "https://github.com/BiloxiStudios/lore.git", rev = "ba92f94305df15796283755040c0bdd9b351841e" }
quinn-proto = { git = "https://github.com/BiloxiStudios/lore.git", rev = "2052749e36e1127c520a191b18141e23980b89d7" }
64 changes: 10 additions & 54 deletions THIRD-PARTY-LICENSES-RUST.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ copyleft dependencies.

## License summary

- **MIT License** — 533 crate(s)
- **MIT License** — 530 crate(s)
- **Apache License 2.0** — 20 crate(s)
- **Unicode License v3** — 19 crate(s)
- **Mozilla Public License 2.0** — 6 crate(s)
Expand Down Expand Up @@ -1984,8 +1984,6 @@ THE SOFTWARE.
Used by:

- lazy_static 1.5.0 — https://github.com/rust-lang-nursery/lazy-static.rs
- rayon-core 1.13.0 — https://github.com/rayon-rs/rayon
- rayon 1.12.0 — https://github.com/rayon-rs/rayon

<details><summary>License text</summary>

Expand Down Expand Up @@ -5316,48 +5314,6 @@ DEALINGS IN THE SOFTWARE.

Used by:

- memmap2 0.9.11 — https://github.com/RazrFalcon/memmap2-rs

<details><summary>License text</summary>

```
Copyright (c) 2020 Yevhenii Reizner
Copyright (c) 2015 Dan Burkert

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the &quot;Software&quot;), to deal in the
Software without restriction, including without
limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice
shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

```

</details>

---

## MIT License

Used by:

- cpufeatures 0.2.17 — https://github.com/RustCrypto/utils
- cpufeatures 0.3.0 — https://github.com/RustCrypto/utils

Expand Down Expand Up @@ -7767,18 +7723,18 @@ SOFTWARE.

Used by:

- lore-base 0.8.6-nightly
- lore-credential 0.8.6-nightly
- lore-base 0.8.7-nightly
- lore-credential 0.8.7-nightly
- lore-error-set-macro 0.1.0
- lore-error-set 0.1.0
- lore-macro 0.8.6-nightly
- lore-notification 0.8.6-nightly
- lore-macro 0.8.7-nightly
- lore-notification 0.8.7-nightly
- lore-proto 0.1.60
- lore-revision 0.8.6-nightly
- lore-storage 0.8.6-nightly
- lore-telemetry 0.8.6-nightly
- lore-transport 0.8.6-nightly
- lore 0.8.6-nightly
- lore-revision 0.8.7-nightly
- lore-storage 0.8.7-nightly
- lore-telemetry 0.8.7-nightly
- lore-transport 0.8.7-nightly
- lore 0.8.7-nightly

<details><summary>License text</summary>

Expand Down
9 changes: 4 additions & 5 deletions crates/lore-vm/src/ops/repository/clone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ pub struct CloneArgs {
/// Use direct file write.
#[serde(default)]
pub direct_file_write: bool,
/// Use direct file I/O instead of memory mapping files.
#[serde(default)]
pub direct_file_io: bool,
// SBAI-5905: `direct_file_io` was REMOVED here because upstream deleted it
// from `LoreRepositoryCloneArgs` (and the C ABI) in the runtime-split
// change — memory mapping is gone, so the flag has no meaning. No caller
// ever set it. Do not re-add without a corresponding upstream field.
/// Optional layer module.
#[serde(default)]
pub layer: String,
Expand Down Expand Up @@ -90,7 +91,6 @@ impl CloneArgs {
bare: u8::from(self.bare),
virtually: u8::from(self.virtually),
direct_file_write: u8::from(self.direct_file_write),
direct_file_io: u8::from(self.direct_file_io),
layer: LoreString::from_str(&self.layer),
layer_metadata: LoreString::from_str(&self.layer_metadata),
prefetch: LoreString::from_str(&self.prefetch),
Expand Down Expand Up @@ -235,7 +235,6 @@ mod tests {
bare: true,
virtually: false,
direct_file_write: true,
direct_file_io: false,
layer: String::new(),
layer_metadata: String::new(),
prefetch: String::new(),
Expand Down
Loading
Loading