[package] name = "gday" description = "Command line tool to securely send files (without a relay or port forwarding)." homepage = "https://github.com/manforowicz/gday/tree/main/gday" categories = ["command-line-utilities", "network-programming", "filesystem"] # Inherit these keys from workspace toml authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.21", features = ["derive"] } env_logger = "0.11.5" gday_encryption = { version = "0.3.0", path = "../gday_encryption" } gday_file_transfer = { version = "0.3.0", path = "../gday_file_transfer" } gday_hole_punch = { version = "0.3.0", path = "../gday_hole_punch" } indicatif = "0.17.9" log = "0.4.22" owo-colors = "4.1.0" tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros"] }