-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (51 loc) · 1.53 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
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "rk"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/takulawo/rk"
authors = ["wuweichao"]
description = "benchmark tool for multiple protocol"
[package.metadata.wix]
upgrade-guid = "4BF71C7A-DE57-4D85-9178-FFF27BA0B93A"
path-guid = "9727148A-0440-43C2-9C3E-0DBB929D8A88"
license = false
eula = false
[dependencies]
anyhow = "1.0.86"
async-trait = "0.1.81"
clap = { version = "4.5.8", features = ["cargo", "string"] }
http = "1.1.0"
http-body-util = "0.1.2"
hyper = { version = "1.4.1", features = ["http1", "http2", "client"] }
hyper-util = { version = "0.1.6", features = ["client", "http1", "http2", "tokio"] }
log = "0.4.22"
tokio = { version = "1.38.0", features = ["full"] }
tokio-native-tls = { version = "0.3.1", features = ["vendored"] }
url = "2.5.2"
[profile.release]
debug = false
lto = "fat"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.18.0"
# The installers to generate for each app
installers = ["shell", "powershell", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# CI backends to support
ci = "github"
# Publish jobs to run in CI
pr-run-mode = "upload"
# Whether to install an updater program
install-updater = false