forked from klausi/mastodon-twitter-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 800 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
28
29
30
31
32
33
[package]
name = "mastodon-twitter-sync"
version = "1.5.0"
authors = ["Klaus Purer <[email protected]>"]
edition = "2018"
[dependencies]
chrono = ">=0.4.0"
dissolve = ">=0.2.2"
egg-mode = ">=0.15"
egg-mode-text = ">=1.14.7"
env_logger = ">=0.7.1"
failure = ">=0.1.5"
log = ">=0.4.8"
mime = ">=0.3.13"
regex = ">=0.2.2"
reqwest = ">=0.10"
serde = { version = ">=1.0", features = ["derive"] }
tempfile = ">=3"
toml = ">=0.4.5"
serde_json = ">=1.0.6"
serde_with = ">=1.4"
structopt = ">=0.2"
tokio = { version = ">=0.2", features = ["fs"] }
# Patched elefren for https://github.com/pwoolcoc/elefren/pull/143
[dependencies.elefren]
git = "https://github.com/klausi/elefren"
rev = "f608b2124c1b6014b7a6385f518c17e17651a1b6"
[profile.release]
# Enabled to have a smaller binary size.
lto = true