forked from greatest-ape/aquatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (52 loc) · 1.65 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
[workspace]
members = [
"aquatic",
"aquatic_common",
"aquatic_http",
"aquatic_http_load_test",
"aquatic_http_private",
"aquatic_http_protocol",
"aquatic_toml_config",
"aquatic_toml_config_derive",
"aquatic_udp",
"aquatic_udp_bench",
"aquatic_udp_load_test",
"aquatic_udp_protocol",
"aquatic_ws",
"aquatic_ws_load_test",
"aquatic_ws_protocol",
]
[workspace.package]
version = "0.2.0"
authors = ["Joakim Frostegård <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic"
readme = "./README.md"
rust-version = "1.64"
[workspace.dependencies]
aquatic_common = { version = "0.2.0", path = "./aquatic_common" }
aquatic_http_protocol = { version = "0.2.0", path = "./aquatic_http_protocol" }
aquatic_http = { version = "0.2.0", path = "./aquatic_http" }
aquatic_toml_config = { version = "0.2.0", path = "./aquatic_toml_config" }
aquatic_toml_config_derive = { version = "0.2.0", path = "./aquatic_toml_config_derive" }
aquatic_udp_protocol = { version = "0.2.0", path = "./aquatic_udp_protocol" }
aquatic_udp = { version = "0.2.0", path = "./aquatic_udp" }
aquatic_ws_protocol = { version = "0.2.0", path = "./aquatic_ws_protocol" }
aquatic_ws = { version = "0.2.0", path = "./aquatic_ws" }
[patch.crates-io]
membarrier = { git = "https://github.com/glommer/membarrier-rs.git", branch = "issue-22" }
[profile.release]
debug = false
lto = "thin"
opt-level = 3
[profile.test]
inherits = "release-debug"
[profile.bench]
inherits = "release-debug"
[profile.release-debug]
inherits = "release"
debug = true
[profile.test-fast]
inherits = "release"
lto = false