c92a7e3e35
globally updated sqlx to 0.6.3 wip basic processing loop wip starting on modules all of the requesting logic, catching up, etc remaining work includes persisting the data wip persisting block data initial and extremely basic nyxd block scraper
21 lines
658 B
TOML
21 lines
658 B
TOML
# Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-statistics-common"
|
|
version = "1.0.1"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
log = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "chrono"]}
|
|
thiserror = { workspace = true }
|
|
tokio = { version = "1.24.1", features = [ "time" ] }
|