Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfariello committed Nov 13, 2019
2 parents 8180fa8 + 202eec8 commit 738bfa7
Show file tree
Hide file tree
Showing 16 changed files with 3,266 additions and 1,146 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: rust
rust:
- stable
- beta
- nightly
jobs:
allow_failures:
- rust: stable
- rust: beta
fast_finish: true
14 changes: 10 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
[package]
name = "aparté"
name = "aparte"
version = "0.1.0"
authors = ["Paul Fariello <paul@fariello.eu>"]
edition = "2018"
license = "MPL-2.0"
repository = "https://github.com/paulfariello/aparte"

[features]
no-cursor-save = []

[dependencies]
log = "0.4"
simple-logging = "2.0"
futures = "0.1"
tokio = "0.1"
tokio-xmpp = "1.0"
xmpp-parsers = { path = "../xmpp-parsers/" }
xmpp-parsers = "0.16"
rpassword = "3.0"
uuid = { version = "0.7", features = ["v4"] }
minidom = "0.11"
termion = "1.5"
derive-error = "0.0.4"
bytes = "0.4"
tokio-codec = "0.1"
tokio-file-unix = "0.5"
dirs = "2.0"
shell-words = "0.1"
chrono = "0.4"
signal-hook = { version = "0.1", features = ["tokio-support"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
Aparté
======
Aparté ![](https://travis-ci.org/paulfariello/aparte.svg?branch=master)
=======================================================================

Simple XMPP console client written in Rust and inspired by Profanity.

Demo
----

[![asciicast](https://asciinema.org/a/272523.png)](https://asciinema.org/a/272523)

Features
--------

- [x] Channel
- [x] Roster
- [x] Auto completion
9 changes: 9 additions & 0 deletions src/account.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
use serde::Deserialize;

#[derive(Debug, Clone, Deserialize)]
pub struct Account {
pub login: String,
pub server: Option<String>,
pub port: Option<u16>,
pub autoconnect: bool,
}
Loading

0 comments on commit 738bfa7

Please sign in to comment.