-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (65 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
73 lines (65 loc) · 1.95 KB
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
71
72
73
[package]
name = "hyperlane-quick-start"
version = "18.0.6"
readme = "README.md"
edition = "2024"
authors = ["root@ltpp.vip"]
license = "MIT"
description = """A lightweight rust http server with middleware, websocket, sse, and tcp support, built on tokio for cross-platform async networking, hyperlane simplifies modern web service development."""
keywords = ["http", "request", "response", "tcp", "cross-platform"]
repository = "https://github.com/hyperlane-dev/hyperlane-quick-start.git"
categories = ["network-programming", "web-programming"]
exclude = [
"tmp",
"logs",
"target",
".github",
".vscode",
"process",
"node_modules",
"**/*.pid",
"**/*.log",
"Cargo.lock",
]
[workspace]
resolver = "3"
members = ["application", "bootstrap", "config", "plugin", "resources"]
[workspace.dependencies]
hyperlane_application = { path = "application", version = "18.0.6" }
hyperlane_bootstrap = { path = "bootstrap", version = "18.0.6" }
hyperlane_config = { path = "config", version = "18.0.6" }
hyperlane_plugin = { path = "plugin", version = "18.0.6" }
hyperlane_resources = { path = "resources", version = "18.0.6" }
tracing = "0.1.44"
hyperlane = "18.2.1"
hyperlane-utils = "24.0.0"
serde = { version = "1.0.228", features = ["derive"] }
[dependencies]
hyperlane_bootstrap = { workspace = true }
hyperlane_config = { workspace = true }
hyperlane_plugin = { workspace = true }
serde = { workspace = true }
tracing = { workspace = true }
hyperlane = { workspace = true }
hyperlane-utils = { workspace = true }
[patch.crates-io]
hyperlane_application = { path = "application" }
hyperlane_bootstrap = { path = "bootstrap" }
hyperlane_config = { path = "config" }
hyperlane_plugin = { path = "plugin" }
[profile.dev]
incremental = true
opt-level = 0
lto = false
panic = "unwind"
debug = false
codegen-units = 16
strip = "none"
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"