-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (31 loc) · 1.02 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 = "telegram2photoprism"
version = "0.0.5"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0"
teloxide = { version = "0.12", features = ["macros", "throttle"] }
log = "0.4"
pretty_env_logger = "0.5.0"
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
serde = { version = "1.0.196", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
rand = "0.8.5"
tokio-util = "0.7.10"
sha1 = { version = "0.10.6", features = [] }
hex = { version = "0.4.3", features = [] }
futures-util = "0.3.30"
retry = "2.0.0"
openssl = { version = "0.10", features = ["vendored"] }
tempfile = "3.9.0"
thiserror = "1.0.56"
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "env"] }
rust-i18n = "3"
task-local-extensions = "0.1.4"
moka = { version = "0.12.5", features = ["future"] }
[dev-dependencies]
testcontainers = "0.15.0"
testcontainers-modules = { version = "0.3.2" }