bd94dd3055
* Store wireguard peers in db * Add update to nym-node * Move gateway-requests and gateway-storage to common * Carry storage to PeerController field * Double kernel modifications with storage ones * Take storage peers at boot * Link storage query for registration flow * Move authenticator peer comms in peer manager * Modify template too * Remove unused * Fix clippy * Fix clippy non-linux * Keep storage data up-to-date on every check * Check for staleness in storage timestamps * Remove potential for panic in unwrap * Fix clippy * Fmt * Clippy after rebase * Remove in memory test structure
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-client-core-gateways-storage"
|
|
version = "0.1.0"
|
|
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
|
|
cosmrs.workspace = true
|
|
log.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
url.workspace = true
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
nym-crypto = { path = "../../crypto", features = ["asymmetric"] }
|
|
nym-gateway-requests = { path = "../../gateway-requests" }
|
|
|
|
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.sqlx]
|
|
workspace = true
|
|
features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "time"]
|
|
optional = true
|
|
|
|
[build-dependencies]
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
sqlx = { workspace = true, features = [
|
|
"runtime-tokio-rustls",
|
|
"sqlite",
|
|
"macros",
|
|
"migrate",
|
|
] }
|
|
|
|
[features]
|
|
fs-gateways-storage = ["sqlx"]
|