forked from BurtonQin/lockbud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 950 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
41
[package]
name = "lockbud"
version = "0.1.0"
authors = ["BurtonQin <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "lockbud"
path = "src/main.rs"
[[bin]]
name = "cargo-lockbud"
path = "src/bin/cargo-lockbud.rs"
[dependencies]
cargo_metadata = { version = "0.12.1", optional = true }
directories = { version = "3.0.1", optional = true }
rustc_version = { version = "0.3.0", optional = true }
getrandom = { version = "0.2.0", features = ["std"] }
byteorder = "1.3"
env_logger = "0.8.2"
log = "0.4.11"
shell-escape = "0.1.5"
hex = "0.4.0"
rand = "0.8.0"
clap = "3.1.12"
shellwords = "1.1.0"
petgraph = "0.6.0"
bitflags = "1.3.2"
smallvec = "1.8.0"
serde_json = "1.0.81"
serde = { version = "1.0", features = ["derive"] }
regex = "1.6.0"
once_cell = "1.13.1"
[profile.dev]
incremental = false
[package.metadata.rust-analyzer]
rustc_private=true