2024-06-28 02:00:24 -07:00
|
|
|
[package]
|
|
|
|
name = "lite-token-account-storage"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
solana-sdk = {workspace = true}
|
2024-07-02 02:36:24 -07:00
|
|
|
solana-program = {workspace = true}
|
|
|
|
spl-token = {workspace = true}
|
|
|
|
spl-token-2022 = {workspace = true}
|
|
|
|
|
2024-06-28 02:00:24 -07:00
|
|
|
lite-account-manager-common = {workspace = true}
|
|
|
|
dashmap = {workspace = true}
|
|
|
|
itertools = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
lazy_static = {workspace = true}
|
|
|
|
prometheus = {workspace = true}
|
|
|
|
log = {workspace = true}
|
|
|
|
serde = {workspace = true}
|
|
|
|
anyhow = {workspace = true}
|
2024-07-02 02:36:24 -07:00
|
|
|
bincode = {workspace = true}
|
2024-07-03 07:08:25 -07:00
|
|
|
lz4 = {workspace = true}
|
2024-07-08 09:29:21 -07:00
|
|
|
bitflags = {workspace = true}
|
|
|
|
arrayref = {workspace = true}
|
2024-07-04 09:24:16 -07:00
|
|
|
|
2024-06-28 02:00:24 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.8.5"
|
2024-07-04 09:24:16 -07:00
|
|
|
rand_chacha = "0.3.1"
|
|
|
|
tracing-subscriber = {workspace = true}
|