Update xmpp dependency to 0.5
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
1aee1cd618
commit
acf22a05c1
3 changed files with 9 additions and 11 deletions
|
@ -17,5 +17,4 @@ pretty_env_logger = "0.5"
|
|||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde_json = "1.0"
|
||||
toml = "0.7"
|
||||
xmpp = "0.4"
|
||||
xmpp-parsers = "0.19"
|
||||
xmpp = "0.5"
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
use crate::webhook::{format_webhook, WebHook};
|
||||
|
||||
use log::debug;
|
||||
use xmpp::{Agent, ClientBuilder, ClientFeature, ClientType, Event};
|
||||
use xmpp_parsers::{message::MessageType, BareJid, Jid};
|
||||
use xmpp::parsers::message::MessageType;
|
||||
use xmpp::{Agent, BareJid, ClientBuilder, ClientFeature, ClientType, Event, Jid};
|
||||
|
||||
pub struct XmppClient {
|
||||
is_online: bool,
|
||||
|
@ -27,14 +27,13 @@ pub struct XmppClient {
|
|||
}
|
||||
|
||||
impl XmppClient {
|
||||
pub fn new(jid: &str, password: &str, rooms: Vec<BareJid>, nickname: String) -> XmppClient {
|
||||
pub fn new(jid: BareJid, password: &str, rooms: Vec<BareJid>, nickname: String) -> XmppClient {
|
||||
let agent = ClientBuilder::new(jid, password)
|
||||
.set_client(ClientType::Bot, "xmpp-rs")
|
||||
.set_website("https://gitlab.com/xmpp-rs/xmpp-rs")
|
||||
.set_default_nick("bot")
|
||||
.enable_feature(ClientFeature::JoinRooms)
|
||||
.build()
|
||||
.unwrap();
|
||||
.build();
|
||||
|
||||
XmppClient {
|
||||
is_online: false,
|
|
@ -16,15 +16,15 @@
|
|||
#![feature(let_chains)]
|
||||
#![feature(never_type)]
|
||||
|
||||
mod bot;
|
||||
mod error;
|
||||
mod web;
|
||||
mod webhook;
|
||||
mod xmpp;
|
||||
|
||||
use crate::bot::XmppClient;
|
||||
use crate::error::Error;
|
||||
use crate::web::webhooks;
|
||||
use crate::webhook::WebHook;
|
||||
use crate::xmpp::XmppClient;
|
||||
|
||||
use std::convert::Infallible;
|
||||
use std::fs::File;
|
||||
|
@ -41,7 +41,7 @@ use hyper::{
|
|||
use log::debug;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use tokio::sync::mpsc;
|
||||
use xmpp_parsers::BareJid;
|
||||
use xmpp::BareJid;
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
struct Config {
|
||||
|
@ -155,7 +155,7 @@ async fn main() -> Result<!, Error> {
|
|||
}
|
||||
|
||||
let mut client = XmppClient::new(
|
||||
&String::from(config.jid),
|
||||
config.jid,
|
||||
config.password.as_str(),
|
||||
config.rooms,
|
||||
config.nickname,
|
||||
|
|
Loading…
Reference in a new issue