Initial commit. Data extraction vaguely tested; report writing tasks written but untested

This commit is contained in:
2024-05-04 03:17:42 +02:00
commit ef4b4b7390
9 changed files with 1756 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "ascertain"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.82"
base64 = "0.22.1"
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3.30"
hex = { version = "0.4.3", features = ["serde"] }
openssl = "0.10.64"
serde = { version = "1.0.200", features = ["derive", "rc"] }
serde_json = "1.0.116"
serde_with = { version = "3.8.1", features = ["base64"] }
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["rt-multi-thread", "fs", "io-util", "net", "sync", "time", "macros", "parking_lot"] }
toml = "0.8.12"
tracing = { version = "0.1.40" }