diff options
author | syn <isaqtm@gmail.com> | 2021-01-27 00:17:03 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2021-01-27 00:17:03 +0300 |
commit | 314c3ae5e81b2ea86a4789113b92f20916645463 (patch) | |
tree | 99e3817ca7bfeee9219c781ffafb0e14b80c9ed8 /Cargo.toml | |
download | tdlib-autogen-314c3ae5e81b2ea86a4789113b92f20916645463.tar.gz |
Quick n dirty generation of tdlib bindings
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5645e1a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "tdlib-autogen" +version = "0.1.0" +authors = ["syn <isaqtm@gmail.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde = "1.0" +serde_json = "1.0" +serde_derive = "1.0" + +chrono = "0.4" + +tdlib-rs = { version = "0.1", path = "../tdlib-rs" } + |