Skip to content

Commit 2a874c4

Browse files
Release v1.0.4
Signed-off-by: FedericoBruzzone <federico.bruzzone.i@gmail.com>
1 parent 6af64d5 commit 2a874c4

5 files changed

Lines changed: 15 additions & 10 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ A Rust wrapper around the Telegram Database library. It includes a generator to
1414

1515
This is an improved version of the [tdlib-rs](https://github.com/paper-plane-developers/tdlib-rs) library, with the following additional features:
1616

17+
1718
1. It is cross-platform, it works on Windows, Linux and MacOS.
18-
2. Not required `pkg-config` to build the library and associated exported variables.
19-
3. Not required `tdlib` to be compiled and installed on the system.
20-
4. It is possible to download the `tdlib` library from the GitHub releases.
19+
2. Not required `tdlib` to be compiled and installed on the system.
20+
3. Not required `pkg-config` to build the library and associated exported variables.
21+
2. Three different ways to build the library:
22+
- `download-tdlib`: download the precompiled library from the GitHub releases.
23+
- `local-tdlib`: use the `tdlib` installed on the system.
24+
- `pkg-config`: use the `pkg-config` to build the library.
25+
5. It is possible to download the `tdlib` library from the GitHub releases.
2126

2227
## Information
2328

tdlib-rs-gen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tdlib-rs-gen"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
authors = [
55
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
66
"Andrea Longoni",
@@ -20,4 +20,4 @@ keywords = [
2020
description = "Rust code generator from TDLib's API definitions."
2121

2222
[dependencies]
23-
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.3" }
23+
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.4" }

tdlib-rs-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tdlib-rs-parser"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
authors = [
55
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
66
"Andrea Longoni",

tdlib-rs/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tdlib-rs"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
authors = [
55
"Federico Bruzzone <federico.bruzzone.i@gmail.com>",
66
"Andrea Longoni",
@@ -46,8 +46,8 @@ reqwest = { version = "0.12.4", features = ["blocking"], optional = true }
4646
zip = { version = "2.0.0", optional = true }
4747

4848
[build-dependencies]
49-
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.3" }
50-
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.3" }
49+
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.4" }
50+
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.4" }
5151
system-deps = { version = "6", optional = true }
5252
reqwest = { version = "0.12.4", features = ["blocking"], optional = true }
5353
zip = { version = "2.0.0", optional = true }

tdlib-rs/src/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// The version of the TDLib library.
1010
const TDLIB_VERSION: &str = "1.8.29";
1111
#[cfg(feature = "download-tdlib")]
12-
const TDLIB_CARGO_PKG_VERSION: &str = "1.0.3";
12+
const TDLIB_CARGO_PKG_VERSION: &str = "1.0.4";
1313

1414
// WARNING: This function is not used in the current version of the library.
1515
// #[cfg(not(any(feature = "docs", feature = "pkg-config", feature = "download-tdlib")))]

0 commit comments

Comments
 (0)