-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
70 lines (66 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
members = [
"hitt-cli",
"hitt-formatter",
"hitt-parser",
"hitt-request",
"hitt-sse",
]
exclude = ["docs", "examples"]
resolver = "2"
[workspace.package]
version = "0.0.17"
authors = ["Mads Hougesen <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/hougesen/hitt"
documentation = "https://github.com/hougesen/hitt#readme"
keywords = ["http", "cli", "testing", "sse", "server-sent-events"]
description = "command line HTTP testing tool focused on speed and simplicity"
homepage = "https://hitt.mhouge.dk"
readme = "README.md"
categories = [
"command-line-utilities",
"development-tools",
"web-programming",
"web-programming::http-client",
]
exclude = ["www", "examples"]
[workspace.dependencies]
clap = { version = "4.5.26", features = ["derive"] }
clap_complete = { version = "4.5.42" }
clap_complete_nushell = { version = "4.5.5" }
crossterm = { version = "0.28.1" }
eventsource-stream = { version = "0.2.3" }
futures = { version = "0.3.31" }
hitt-formatter = { path = "hitt-formatter", version = "0.0.17" }
hitt-parser = { path = "hitt-parser", version = "0.0.17" }
hitt-request = { path = "hitt-request", version = "0.0.17" }
hitt-sse = { path = "hitt-sse", version = "0.0.17" }
http = { version = "1.2.0" }
ignore = { version = "0.4.23" }
jsonformat = { version = "2.0.0" }
mime = { version = "0.3.17" }
once_cell = { version = "1.20.2" }
reqwest = { version = "0.12.12", default-features = false, features = [
"brotli",
"charset",
"cookies",
"deflate",
"gzip",
"http2",
"json",
"macos-system-configuration",
"rustls-tls",
"zstd",
] }
reqwest-eventsource = { version = "0.6.0" }
tempfile = { version = "3.15.0" }
tokio = { version = "1.43.0", features = ["fs", "macros", "rt-multi-thread"] }
[profile.release]
lto = true
panic = 'abort'
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"