Skip to content

Commit

Permalink
squash
Browse files Browse the repository at this point in the history
  • Loading branch information
just-in-chang committed Jun 13, 2024
1 parent f21aee5 commit 23dc124
Show file tree
Hide file tree
Showing 9 changed files with 609 additions and 102 deletions.
45 changes: 45 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ members = [
"crates/aptos-genesis",
"crates/aptos-github-client",
"crates/aptos-id-generator",
"crates/aptos-in-memory-cache",
"crates/aptos-infallible",
"crates/aptos-inspection-service",
"crates/aptos-jwk-consensus",
Expand Down Expand Up @@ -347,6 +348,7 @@ aptos-genesis = { path = "crates/aptos-genesis" }
aptos-github-client = { path = "crates/aptos-github-client" }
aptos-global-constants = { path = "config/global-constants" }
aptos-id-generator = { path = "crates/aptos-id-generator" }
aptos-in-memory-cache = { path = "crates/aptos-in-memory-cache" }
aptos-indexer = { path = "crates/indexer" }
aptos-indexer-grpc-cache-worker = { path = "ecosystem/indexer-grpc/indexer-grpc-cache-worker" }
aptos-indexer-grpc-data-service = { path = "ecosystem/indexer-grpc/indexer-grpc-data-service" }
Expand Down Expand Up @@ -457,6 +459,7 @@ atty = "0.2.14"
nalgebra = "0.32"
float-cmp = "0.9.0"
again = "0.1.2"
allocative = "0.3.3"
anyhow = "1.0.71"
anstyle = "1.0.1"
arbitrary = { version = "1.3.2", features = ["derive"] }
Expand Down
24 changes: 24 additions & 0 deletions crates/aptos-in-memory-cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "aptos-in-memory-cache"
description = "In-memory cache"
version = "0.1.0"

# Workspace inherited keys
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
dashmap = { workspace = true }
futures = { workspace = true }
parking_lot = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
allocative = { workspace = true }
Loading

0 comments on commit 23dc124

Please sign in to comment.