⬆: bsky-sdk v0.1.20 + atrium_api v0.25.4

This commit is contained in:
VC
2025-06-12 14:53:25 +02:00
parent 3ea2478512
commit 5969e3a56a
4 changed files with 994 additions and 468 deletions

1449
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "oolatoocs" name = "oolatoocs"
version = "4.2.1" version = "4.2.2"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -21,7 +21,7 @@ serde = { version = "^1.0", features = ["derive"] }
tokio = { version = "^1.33", features = ["rt-multi-thread", "macros"] } tokio = { version = "^1.33", features = ["rt-multi-thread", "macros"] }
toml = "^0.8" toml = "^0.8"
bsky-sdk = "^0.1" bsky-sdk = "^0.1"
atrium-api = { version = "^0.24", features = ["namespace-appbsky"] } atrium-api = { version = "^0.25", features = ["namespace-appbsky"] }
image = "^0.25" image = "^0.25"
webp = "^0.3" webp = "^0.3"

View File

@@ -1,7 +1,7 @@
use crate::config::BlueskyConfig; use crate::config::BlueskyConfig;
use atrium_api::{ use atrium_api::{
app::bsky::feed::post::RecordData, com::atproto::repo::upload_blob::Output, app::bsky::feed::post::RecordData, com::atproto::repo::upload_blob::Output,
types::string::Datetime, types::string::Language, types::string::Datetime, types::string::Language, types::string::RecordKey,
}; };
use bsky_sdk::{ use bsky_sdk::{
agent::config::{Config, FileStore}, agent::config::{Config, FileStore},
@@ -139,7 +139,7 @@ async fn get_record(
cid: None, cid: None,
collection: atrium_api::types::string::Nsid::new("app.bsky.feed.post".to_string())?, collection: atrium_api::types::string::Nsid::new("app.bsky.feed.post".to_string())?,
repo: atrium_api::types::string::Handle::new(config.to_string())?.into(), repo: atrium_api::types::string::Handle::new(config.to_string())?.into(),
rkey: rkey.to_string(), rkey: RecordKey::new(rkey.to_string())?,
} }
.into(), .into(),
) )

View File

@@ -82,10 +82,7 @@ pub fn write_state(conn: &Connection, t: TootRecord) -> Result<(), Box<dyn Error
/// Initiates the DB from path /// Initiates the DB from path
pub fn init_db(d: &str) -> Result<(), Box<dyn Error>> { pub fn init_db(d: &str) -> Result<(), Box<dyn Error>> {
debug!( debug!("Initializing DB for {}", env!("CARGO_PKG_NAME"));
"{}",
format!("Initializing DB for {}", env!("CARGO_PKG_NAME"))
);
let conn = Connection::open(d)?; let conn = Connection::open(d)?;
conn.execute( conn.execute(