-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (26 loc) · 899 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
[package]
name = "localsend"
version = "0.1.0"
authors = ["Krithic Kumar [email protected]"]
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
keywords = ["filesharing"]
categories = ["command-line-utilities"]
description = "a CLI for localsend"
repository = "https://github.com/notjedi/localsend-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1"
tracing-log = "0.2"
console-subscriber = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.27", features = ["rt-multi-thread", "signal"] }
console = "0.15"
indicatif = "0.17"
dialoguer = "0.11"
localsend-core = { path = "crates/localsend-core", package = "localsend-core" }
[workspace]
members = ["crates/localsend-core", "crates/axum-server", "crates/rustls"]
[profile.release]
strip = "symbols"