This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/cargo/main/hashbrown-0.14
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


    omit df4d8cb2 Update hashbrown requirement from 0.13 to 0.14
     add e335a223 Introduce a cache crate supporting concurrent cache value 
loading based on the cache_system crate of influxdb_iox and the linked_hash_map 
mod from hashlink (#825)
     add bbbfa7b6 Update hashbrown requirement from 0.13 to 0.14

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (df4d8cb2)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/hashbrown-0.14 
(bbbfa7b6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Cargo.toml                                         |   11 +-
 rustfmt.toml => ballista/cache/Cargo.toml          |   17 +-
 ballista/cache/src/backend/mod.rs                  |   73 +
 .../backend/policy/lru/hashlink/linked_hash_map.rs | 2218 ++++++++++++++++++++
 .../src/backend/policy/lru/hashlink/lru_cache.rs   |  342 +++
 .../src/backend/policy/lru/hashlink/mod.rs}        |    4 +-
 ballista/cache/src/backend/policy/lru/mod.rs       |  111 +
 ballista/cache/src/backend/policy/mod.rs           |   61 +
 ballista/cache/src/lib.rs                          |   54 +
 ballista/cache/src/listener/cache_policy.rs        |  133 ++
 ballista/cache/src/listener/loading_cache.rs       |  197 ++
 .../ui/index.d.ts => cache/src/listener/mod.rs}    |    3 +-
 .../src/loading_cache/cancellation_safe_future.rs  |  179 ++
 ballista/cache/src/loading_cache/driver.rs         |  573 +++++
 ballista/cache/src/loading_cache/loader.rs         |   52 +
 ballista/cache/src/loading_cache/mod.rs            |  113 +
 ballista/cache/src/metrics/loading_cache.rs        |  292 +++
 .../lib.rs => ballista/cache/src/metrics/mod.rs    |    2 +-
 18 files changed, 4426 insertions(+), 9 deletions(-)
 copy rustfmt.toml => ballista/cache/Cargo.toml (69%)
 create mode 100644 ballista/cache/src/backend/mod.rs
 create mode 100644 
ballista/cache/src/backend/policy/lru/hashlink/linked_hash_map.rs
 create mode 100644 ballista/cache/src/backend/policy/lru/hashlink/lru_cache.rs
 copy ballista/{scheduler/ui/index.d.ts => 
cache/src/backend/policy/lru/hashlink/mod.rs} (90%)
 create mode 100644 ballista/cache/src/backend/policy/lru/mod.rs
 create mode 100644 ballista/cache/src/backend/policy/mod.rs
 create mode 100644 ballista/cache/src/lib.rs
 create mode 100644 ballista/cache/src/listener/cache_policy.rs
 create mode 100644 ballista/cache/src/listener/loading_cache.rs
 copy ballista/{scheduler/ui/index.d.ts => cache/src/listener/mod.rs} (94%)
 create mode 100644 ballista/cache/src/loading_cache/cancellation_safe_future.rs
 create mode 100644 ballista/cache/src/loading_cache/driver.rs
 create mode 100644 ballista/cache/src/loading_cache/loader.rs
 create mode 100644 ballista/cache/src/loading_cache/mod.rs
 create mode 100644 ballista/cache/src/metrics/loading_cache.rs
 copy examples/src/lib.rs => ballista/cache/src/metrics/mod.rs (97%)

Reply via email to