-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 736 Bytes
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
[package]
name = "runfast"
version = "0.5.3"
edition = "2021"
authors = ["Anna Singleton<annabeths111@gmail.com>"]
repository = "https://github.com/anna-singleton/runfast"
description = "A workflow tool for quickly setting up and running programming projects"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[build-dependencies]
clap = { version = "4.0.15", features = ["derive"] }
clap_mangen = { version = "0.2" }
[dependencies]
clap = { version = "4.0.18", features = ["derive"] }
directories = "4.0.1"
serde = { version="1.0.147", features = ["derive"] }
regex = "1.6.0"
skim = "0.20.2"
toml = "0.5.9"