-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
38 lines (34 loc) · 996 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
34
35
36
37
38
[package]
name = "rope"
version = "0.2.0"
description = "easy file transfer on same network"
repository = "https://github.com/rnbguy/rope"
readme = "README.md"
license = "AGPL-3.0"
keywords = ["mdns", "p2p", "network"]
categories = ["command-line-utilities"]
authors = ["Ranadeep Biswas <[email protected]>"]
rust-version = "1.81.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "cargo"] }
if-addrs = "0.13"
indicatif = { version = "0.17", features = ["tokio"] }
mdns-sd = "0.11"
names = { version = "0.14", default-features = false }
tokio = { version = "1.40", features = ["full", "rt-multi-thread", "net"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[lints.clippy]
complexity = "warn"
correctness = "warn"
nursery = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"
all = "warn"
# cargo = "warn"
# pedantic = "warn"
# restriction = "warn"