-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 780 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (26 loc) · 780 Bytes
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 = "trans-arxiv-bot"
version = "0.1.7"
authors = ["moisutsu <moisutsu@gmail.com>"]
edition = "2021"
description = "A Twitter bot that tweets translated arXiv paper summaries"
repository = "https://github.com/moisutsu/trans-arxiv-bot"
license = "MIT"
readme = "README.md"
# see https://crates.io/category_slugs
categories = ["command-line-utilities"]
# see https://crates.io/keywords
keywords = ["cli", "twitter", "bot"]
[dependencies]
kuon = "0.0.22"
arxiv-rs = "0.1.5"
tokio = { version = "1.3.0", features = ["full"] }
anyhow = "1.0.38"
structopt = "0.3"
reqwest = { version = "0.11.2", features = ["json"] }
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
chrono = "0.4.19"
async-trait = "0.1.48"
log = "0.4.14"
env_logger = "0.8.3"