audit stuff
This commit is contained in:
@@ -54,11 +54,10 @@ tokio-tungstenite = { workspace = true }
|
||||
# Terminal UI
|
||||
colored = "2.1"
|
||||
comfy-table = "7.1"
|
||||
indicatif = "0.17"
|
||||
dialoguer = "0.11"
|
||||
|
||||
# Authentication
|
||||
jsonwebtoken = { version = "10.2", features = ["rust_crypto"] }
|
||||
jsonwebtoken = { workspace = true }
|
||||
|
||||
# Logging
|
||||
tracing = { workspace = true }
|
||||
|
||||
@@ -3,6 +3,7 @@ name = "core-timer-sensor"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Attune Contributors"]
|
||||
license.workspace = true
|
||||
description = "Standalone timer sensor runtime for Attune core pack"
|
||||
|
||||
[[bin]]
|
||||
@@ -11,42 +12,42 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
# Async runtime
|
||||
tokio = { version = "1.41", features = ["full"] }
|
||||
async-trait = "0.1"
|
||||
tokio = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
|
||||
# HTTP client
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
reqwest = { workspace = true, features = ["json"] }
|
||||
|
||||
# Message queue
|
||||
lapin = "2.3"
|
||||
futures = "0.3"
|
||||
lapin = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
||||
tracing = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
|
||||
# Error handling
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
anyhow = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
|
||||
# Time handling
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
chrono = { workspace = true }
|
||||
|
||||
# Cron scheduling
|
||||
tokio-cron-scheduler = "0.15"
|
||||
|
||||
# CLI
|
||||
clap = { version = "4.5", features = ["derive"] }
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
|
||||
# Utilities
|
||||
uuid = { version = "1.11", features = ["v4", "serde"] }
|
||||
uuid = { workspace = true }
|
||||
urlencoding = "2.1"
|
||||
base64 = "0.21"
|
||||
base64 = "0.22"
|
||||
|
||||
[dev-dependencies]
|
||||
mockall = "0.13"
|
||||
tempfile = "3.13"
|
||||
mockall = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
|
||||
Reference in New Issue
Block a user