-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (23 loc) · 839 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
[package]
name = "p2p-clipboard"
version = "0.1.0"
edition = "2021"
description = "A Peer-to-Peer clipboard syncing tool."
license = "MIT"
authors = ["gnattu"]
[dependencies]
arboard = { version = "3.3.0",features = ["wayland-data-control"] }
clipboard-master = { git = "https://github.com/gnattu/clipboard-master.git" }
tokio = { version = "1.35.1", features = ["full"] }
async-task = "4.7.0"
libp2p = { version = "0.53.2", features = ["tokio", "gossipsub", "macros", "identify", "kad", "tcp", "yamux"] }
futures = "0.3.30"
log = "0.4.20"
clap = { version = "4.4.18", features = ["derive"] }
ed25519-dalek = { version = "2.1.0", features = ["pkcs8", "pem"] }
machine-uid = "0.5.1"
zstd = "0.13.0"
libp2p-mdns = { path = "./lib/mdns", features = ["tokio"] }
libp2p-tls = { path = "./lib/tls" }
hex-literal = "0.4.1"
env_logger = "0.11.1"