-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (34 loc) · 913 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
39
40
[package]
name = "rayso"
version = "0.1.1"
edition = "2021"
authors = [ "PwnWriter < [email protected] >" ]
description = "Upload code to ray.so from terminal"
readme = "README.md"
repository = "https://github.com/pwnwriter/rayso"
homepage = "https://github.com/pwnwriter/rayso.git"
license = "MIT"
keywords = ["screenshots", "code-beautify", "sippet"]
categories = ["accessibility", "web-programming", "command-line" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.11", features = ["derive"] }
tokio = { version = "1.29.1", features = ["full"] }
open = "5.0.0"
rbase64 = "2.0.3"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false