-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (33 loc) · 1.24 KB
/
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
28
29
30
31
32
33
34
[package]
name = "firefly_tg"
version = "0.1.8"
authors = ["ffimnsr <[email protected]>"]
edition = "2018"
readme = "README.md"
description = "This is a simple Telegram bot with interface to Firefly III to process and store simple transactions."
homepage = "https://github.com/ffimnsr/firefly-tg-bot-rs"
repository = "https://github.com/ffimnsr/firefly-tg-bot-rs"
license = "MIT OR Apache-2.0"
exclude = [".gitignore"]
publish = false
[dependencies]
hyper = { version = "0.14", features = ["full"] }
routerify = "2.0"
reqwest = { version = "0.11", features = ["json", "native-tls"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = { version = "0.3", default-features = false }
futures-util = { version = "0.3", default-features = false }
tokio = { version = "1.4", features = ["rt-multi-thread", "macros", "time"] }
dotenv = "0.15"
log = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["tracing-log"] }
tracing-attributes = "0.1"
tracing-futures = "0.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
lazy_static = "1.4"
sled = "0.34"
sled-extensions = { version = "0.2", features = ["bincode"] }
urlencoding = "2.1"