forked from SpiralP/classicube-cef-loader-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.23 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
[package]
name = "classicube-cef-loader-plugin"
version = "0.8.1-alpha.0"
authors = ["SpiralP <[email protected]>"]
edition = "2018"
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
async-dispatcher = { git = "https://github.com/SpiralP/rust-async-dispatcher.git" }
bzip2 = { version = "0.4.1", features = ["tokio"] }
classicube-helpers = { git = "https://github.com/SpiralP/rust-classicube-helpers.git" }
classicube-sys = { git = "https://github.com/SpiralP/rust-classicube-sys.git" }
color-backtrace = { git = "https://github.com/SpiralP/color-backtrace-msgbox.git" }
env_logger = "0.7.1"
error-chain = "0.12.2"
futures = { version = "0.3.5", features = ["compat", "io-compat"] }
futures-timer = "3.0.2"
lazy_static = "1.4.0"
log = "0.4.11"
reqwest = { version = "0.10.6", features = ["json", "stream"] }
serde = { version = "1.0.114", features = ["derive"] }
tar = "0.4.29"
tokio = { version = "0.2.21", features = ["full"] }
tokio-util = { version = "0.3.1", features = ["compat"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2.72"
[package.metadata.release]
disable-publish = true
pre-release-commit-message = "Release {{version}}"
post-release-commit-message = "Begin {{next_version}}"
tag-message = "Release version {{version}}"