#┌─────────────────────────────────────────────────────────────────────────────┐ #│ Pastry - A paste client │ #│ ======================= │ #│ File : pastry/Cargo.toml │ #│ License: Mozilla Public License 2.0 │ #│ URL : https://gitlab.com/shivanandvp/pastry │ #│ Authors: │ #│ 1. shivanandvp │ #│ 2. │ #│ ----- │ #│ Description: │ #│ │ #│ │ #│ ----- │ #│ Last Modified: Mon, 20th December 2021 5:00:41 AM -06:00 │ #│ Modified By : │ #│ ----- │ #│ 1. Copyright (c) 2021 shivanandvp │ #│ 2. │ #└─────────────────────────────────────────────────────────────────────────────┘ [package] name = "pastry" version = "0.0.1" edition = "2021" license = "MPL-2.0" authors = ["shivanandvp "] readme = "README.md" repository = "https://gitlab.com/shivanandvp/pastry.git" description = "A paste client" keywords = ["paste", "pastebin", "haste", "upload",] categories = ["command-line-utilities",] exclude = [ "scripts/*", ".gitlab-ci.yml", "pastry.code-workspace", ] [lib] name = "pastry" path = "src/lib/lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" chrono = "0.4" snafu = "0.6" tokio = { version = "1", features = ["full"] } reqwest = { version = "0.11", features = ["json"] } url = { version = "2", features = ["serde"] } # ring = { git = "https://github.com/briansmith/ring" } ring = "0.16" base64 = "0.13" aes-gcm = "0.9" generic-array = "0.14" # flate2 = "1.0" # Does not seem to do raw compression without headers and metadata deflate = "1.0.0" bs58 = "0.4" cipher = "0.3" regex = "1" chronoutil = "0.2" typenum = "1.14" owo-colors = { version = "3.1.0", features = ["supports-colors"] } clap = { version = "3.0.0-rc.7", features = ["cargo"]}