Cargo.toml (1901B)
1 [package] 2 name = "tg_sync" 3 version = "0.1.0" 4 authors = ["MTRNord <mtrnord1@gmail.com>"] 5 6 # A short blurb about the package. This is not rendered in any format when 7 # uploaded to crates.io (aka this is not markdown). 8 description = "A modular sync bot for slack and Telegram" 9 10 # These URLs point to more information about the repository. These are 11 # intended to be webviews of the relevant data, not necessarily compatible 12 # with VCS tools and the like. 13 #documentation = "..." 14 #homepage = "..." 15 repository = "https://github.com/Nordgdanken/TG_sync-rs" 16 17 # This points to a file in the repository (relative to this `Cargo.toml`). The 18 # contents of this file are stored and indexed in the registry. 19 readme = "README.md" 20 21 # This is a list of up to five keywords that describe this crate. Keywords 22 # are searchable on crates.io, and you may choose any words that would 23 # help someone find this crate. 24 keywords = ["telegram", "slack", "bot"] 25 26 # This is a string description of the license for this package. Currently 27 # crates.io will validate the license provided against a whitelist of known 28 # license identifiers from http://spdx.org/licenses/. Multiple licenses can be 29 # separated with a `/`. 30 license = "GPL-3.0" 31 32 # Optional specification of badges to be displayed on crates.io. The badges 33 # currently available are Travis CI, Appveyor, and Gitlab latest build status, 34 # specified using the following parameters: 35 [badges] 36 # Travis CI: `repository` is required. `branch` is optional; default is `master` 37 travis-ci = { repository = "https://github.com/Nordgdanken/TG_sync-rs", branch = "master" } 38 39 40 [dependencies] 41 telebot = "0.1.1" 42 slack = { git = "https://github.com/MTRNord/slack-rs", branch = "openssl-fix" } 43 futures = "0.1.7" 44 tokio-core = "0.1.2" 45 46 [replace] 47 "websocket:0.17.1" = { git = "https://github.com/asayers/rust-websocket", branch = "openssl-0.9" }