Skip to content

Commit a868ec2

Browse files
Merge pull request #17 from LukasKalbertodt/dev
Version 0.3.0
2 parents 4bf0389 + 025895b commit a868ec2

File tree

7 files changed

+317
-73
lines changed

7 files changed

+317
-73
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "telegram-bot"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55

66
description = "A library for creating Telegram bots."
@@ -18,3 +18,4 @@ exclude = ["deploy.sh"]
1818
hyper = "*"
1919
rustc-serialize = "*"
2020
url = "*"
21+
multipart = "*"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use telegram_bot::*;
1818

1919
fn main() {
2020
// Create bot, test simple API call and print bot information
21-
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
21+
let api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
2222
println!("getMe: {:?}", api.get_me());
2323
let mut listener = api.listener(ListeningMethod::LongPoll(None));
2424

@@ -83,6 +83,6 @@ Please submit pull request against the `dev` branch, unless all changes are just
8383
- [x] "getUserProfilePhotos"
8484
- [x] "getUpdates" and `long_poll`
8585
- [ ] "setWebhook" and `listen`
86-
- [ ] sending files ("sendAudio", "sendDocument", ...)
86+
- [x] sending files ("sendAudio", "sendDocument", ...)
8787
- [x] More good documentation and examples
8888
- [x] Maybe think about multithreading stuff

examples/features.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use rustc_serialize::json;
66

77
fn main() {
88
// Create bot, test simple API call and print bot information
9-
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
9+
let api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
1010
println!("getMe: {:?}", api.get_me());
1111
let mut listener = api.listener(ListeningMethod::LongPoll(None));
1212

examples/simple.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use telegram_bot::*;
44

55
fn main() {
66
// Create bot, test simple API call and print bot information
7-
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
7+
let api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
88
println!("getMe: {:?}", api.get_me());
99
let mut listener = api.listener(ListeningMethod::LongPoll(None));
1010

src/error.rs

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ pub enum Error {
2525
InvalidTokenFormat(::url::ParseError),
2626
/// The given environment variable could not be fetched.
2727
InvalidEnvironmentVar(env::VarError),
28+
/// The given path is not valid.
29+
InvalidPath(String),
2830
}
2931

3032
impl ::std::error::Error for Error {
@@ -38,6 +40,7 @@ impl ::std::error::Error for Error {
3840
Error::InvalidState(ref s) => &s,
3941
Error::InvalidTokenFormat(ref e) => e.description(),
4042
Error::InvalidEnvironmentVar(ref e) => e.description(),
43+
Error::InvalidPath(ref s) => &s,
4144
}
4245
}
4346
}
@@ -53,6 +56,7 @@ impl fmt::Display for Error {
5356
Error::InvalidState(ref s) => s.fmt(f),
5457
Error::InvalidTokenFormat(ref e) => e.fmt(f),
5558
Error::InvalidEnvironmentVar(ref e) => e.fmt(f),
59+
Error::InvalidPath(ref s) => s.fmt(f),
5660
}
5761
}
5862
}

0 commit comments

Comments
 (0)