-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (24 loc) · 903 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "fpfs"
version = "0.1.0"
authors = ["Alex Plate <AlexPl292@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
fuse = "0.3.1"
time = "0.1.44"
libc = "0.2.51"
tokio = { version = "0.3.5", features = ["fs", "sync", "rt-multi-thread"]}
rand = "0.7.3"
grammers-client = { git = "https://github.com/Lonami/grammers" }
grammers-session = { git = "https://github.com/Lonami/grammers" }
grammers-tl-types = { git = "https://github.com/Lonami/grammers" }
grammers-mtsender = { git = "https://github.com/Lonami/grammers" }
grammers-mtproto = { git = "https://github.com/Lonami/grammers" }
simple_logger = "1.11.0"
log = "0.4.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
[dev-dependencies]
tokio = { version = "0.3", features = ["macros", "time", "fs", "rt"] }