mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-14 03:03:12 +00:00
init: initial structure
This commit is contained in:
parent
1d09afd9e0
commit
149b00d2a3
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -2198,6 +2198,22 @@ version = "0.1.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "4ee796ad498c8d9a1d68e477df8f754ed784ef875de1414ebdaf169f70a6a784"
|
||||
|
||||
[[package]]
|
||||
name = "indexer"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base58",
|
||||
"common",
|
||||
"futures",
|
||||
"log",
|
||||
"nssa",
|
||||
"nssa_core",
|
||||
"serde",
|
||||
"storage",
|
||||
"tokio",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "indexmap"
|
||||
version = "1.9.3"
|
||||
|
||||
@ -19,7 +19,7 @@ members = [
|
||||
"integration_tests/proc_macro_test_attribute",
|
||||
"examples/program_deployment",
|
||||
"examples/program_deployment/methods",
|
||||
"examples/program_deployment/methods/guest",
|
||||
"examples/program_deployment/methods/guest", "indexer",
|
||||
]
|
||||
|
||||
[workspace.dependencies]
|
||||
|
||||
19
indexer/Cargo.toml
Normal file
19
indexer/Cargo.toml
Normal file
@ -0,0 +1,19 @@
|
||||
[package]
|
||||
name = "indexer"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
nssa.workspace = true
|
||||
nssa_core.workspace = true
|
||||
common.workspace = true
|
||||
storage.workspace = true
|
||||
|
||||
base58.workspace = true
|
||||
anyhow.workspace = true
|
||||
serde.workspace = true
|
||||
log.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||
futures.workspace = true
|
||||
0
indexer/src/client/mod.rs
Normal file
0
indexer/src/client/mod.rs
Normal file
1
indexer/src/lib.rs
Normal file
1
indexer/src/lib.rs
Normal file
@ -0,0 +1 @@
|
||||
pub mod client;
|
||||
Loading…
x
Reference in New Issue
Block a user