f4dd9a915d
* Add Apache 2.0 to bunch of common crates * Allow some basic licenses * Add more licenses
21 lines
657 B
TOML
21 lines
657 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 = { version = "0.5", features = ["runtime-tokio-rustls", "chrono"]}
|
|
thiserror = { workspace = true }
|
|
tokio = { version = "1.24.1", features = [ "time" ] }
|