-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 796 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
[package]
name = "paster"
version = "0.1.1"
authors = ["Daniil Zhukov <dmzhukov@outlook.com>"]
edition = "2021"
description = "Easily paste from your terminal to services like pastebin.com"
readme = "README.md"
repository = "https://github.com/BugLight/paster"
license = "MIT"
keywords = ["paste", "pastebin"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.70"
either = "1.8"
clap = { version = "4.2.4", features = ["derive"] }
confy = { version = "0.5.1", default-features = false, features = ["yaml_conf"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = { version = "0.9" }
reqwest = { version = "0.11.18", features = ["blocking", "multipart", "native-tls-vendored"] }
[dev-dependencies]
assert_cmd = "2.0.11"
assert_fs = "1.0.13"
predicates = "3.0.3"