diff --git a/Cargo.lock b/Cargo.lock index b45078fc..8b59dfef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1390,6 +1390,7 @@ dependencies = [ "serde", "serde_json", "tempfile", + "time", "tokio", "tokio-stream", "tower-http", @@ -1438,6 +1439,7 @@ dependencies = [ "serde", "serde_json", "tempfile", + "time", "tokio", "tokio-stream", "tracing", @@ -1466,6 +1468,7 @@ dependencies = [ "reqwest", "serde", "serde_json", + "time", "url", ] diff --git a/Cargo.toml b/Cargo.toml index dc17b915..ec42b447 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,6 +72,7 @@ forgejo-api = { version = "0.11", default-features = false, features = [ "rustls-tls", ] } url = "2" +time = { version = "0.3", default-features = false, features = ["formatting", "parsing"] } petgraph = { version = "0.8", default-features = false, features = ["std"] } matrix-sdk = { version = "0.14", default-features = false, features = [ "rustls-tls", diff --git a/hive-ag3nt/Cargo.toml b/hive-ag3nt/Cargo.toml index 9f041cc3..6c182bfb 100644 --- a/hive-ag3nt/Cargo.toml +++ b/hive-ag3nt/Cargo.toml @@ -12,6 +12,7 @@ axum.workspace = true reqwest.workspace = true forgejo-api.workspace = true url.workspace = true +time.workspace = true futures-util = "0.3" clap.workspace = true hive-claude.workspace = true diff --git a/hive-c0re/Cargo.toml b/hive-c0re/Cargo.toml index de3e6b77..b6dbd84c 100644 --- a/hive-c0re/Cargo.toml +++ b/hive-c0re/Cargo.toml @@ -14,6 +14,7 @@ bcrypt.workspace = true reqwest.workspace = true forgejo-api.workspace = true url.workspace = true +time.workspace = true clap.workspace = true clap_complete.workspace = true clap-markdown = "0.1" diff --git a/hive-forge/Cargo.toml b/hive-forge/Cargo.toml index 5886ce1b..72c0cfc8 100644 --- a/hive-forge/Cargo.toml +++ b/hive-forge/Cargo.toml @@ -17,6 +17,7 @@ clap = { workspace = true } # note keeps holding. forgejo-api = { workspace = true, features = ["sync"] } url.workspace = true +time.workspace = true reqwest = { workspace = true, features = [ "json", # Trust the OS/system CA store (rustls-native-certs), not only the