-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 836 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
29
30
31
[package]
name = "bvm"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.16", features = ["derive"] }
directories = "4.0.1"
octocrab = "0.16.0"
reqwest = { version = "0.11.11", features = ["stream"] }
serde = "1.0.142"
serde_derive = "1.0.142"
tinytemplate = "1.2.1"
zip = "0.6.2"
indicatif = "0.15.0"
futures-util = "0.3.21"
bytes = "1.0.1"
tokio = { version = "1.20.1", features = ["full"] }
dialoguer = "0.10.2"
regex = "1.6.0"
semver = "1.0.13"
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]