forked from bytehunt/rustycli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1.08 KB
/
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
41
42
[package]
name = "rustycli"
version = "0.1.0"
edition = "2021"
authors = [ "PwnWriter < hey@pwnwriter.xyz >" ]
description = "🦊 Access the rust playground right in terminal."
readme = "README.md"
repository = "https://github.com/pwnwriter/rustycli"
homepage = "https://github.com/pwnwriter/rustycli.git"
license = "MIT"
keywords = ["Playground", "rustycli", "rust-lang"]
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.12", features = ["derive"] }
spinoff = { version = "0.7.0", features = ["dots", "arc", "line"] }
reqwest = { version = "0.11.18", features = ["json"] }
tokio = { version = "1.29.1", features = ["full"] }
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
[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