-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
41 lines (38 loc) · 1.05 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
[workspace]
members = ["cargo_equip_marker"]
[package]
name = "cargo-equip"
version = "0.5.2"
authors = ["Ryo Yamashita <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A Cargo subcommand to bundle your code into one `.rs` file for competitive programming."
repository = "https://github.com/qryxip/cargo-equip"
keywords = ["competitive", "cli", "windows"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
[dependencies]
anyhow = "1.0.32"
atty = "0.2.14"
cargo_metadata = "0.11.1"
cfg-expr = "0.4.1"
easy-ext = "0.2.3"
fixedbitset = "0.3.1"
if_chain = "1.0.0"
itertools = "0.9.0"
maplit = "1.0.2"
once_cell = "1.4.1"
proc-macro2 = { version = "1.0.19", features = ["span-locations"] }
quote = "1.0.7"
rand = "0.7.3"
regex = "1.3.9"
serde = { version = "1.0.115", features = ["derive"] }
serde_json = "1.0.57"
shell-escape = "0.1.5"
structopt = "0.3.17"
syn = { version = "1.0.39", features = ["full"] }
tempfile = "3.1.0"
termcolor = "1.1.0"
toml_edit = "0.2.0"
url = "2.1.1"
[dev-dependencies]
difference = "2.0.0"