[package] name = "tdlib-rs" version = "0.1.1" authors = ["syn "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] libc = "0.2" tdlib-sys = { version = "1.7.0", path = "../tdlib-sys" } thiserror = "1.0" # TODO: the only thing we need from futures-rs is BoxFuture. # maybe we should define it ourselves and drop futures dependency futures = "0.3" tokio = { version = "1.0", features = ["rt"] } # TODO: get rid of crossbeam and use std if possible crossbeam = "0.8" serde = "1.0" serde_json = "1.0" serde_derive = "1.0" # TODO: make logging a feature log = "0.4" [dev-dependencies] tokio = { version = "1.0", features = ["rt", "rt-multi-thread", "macros"] }