-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 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
35
36
[package]
name = "remote-clipboard"
version = "0.4.0"
authors = ["Thomas Legris <legris.thomas@gmail.com>"]
edition = "2018"
license = "MPL-2.0"
description = "A CLI tool to share content across different clients"
readme = "README.md"
homepage = "https://github.com/noboruma/rclip"
repository = "https://github.com/noboruma/rclip"
keywords = ["cli", "remote", "clipboard", "serverless"]
categories = ["command-line-utilities"]
exclude = [
"www/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
dotenv = "0.15.0"
dirs = "2.0.2"
url = "2.1.1"
futures = "0.3"
mocktopus = "0.7.5"
base64 = "0.12.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
assert_cmd = "1.0.1"
tokio = { version = "1", features = ["full"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4.14"
console_error_panic_hook = "0.1.6"
js-sys = "0.3.41"