We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f5404b commit dc67d5aCopy full SHA for dc67d5a
Cargo.toml
@@ -37,6 +37,12 @@ wws-project = { workspace = true }
37
reqwest = { version = "0.11", features = ["blocking"] }
38
39
[features]
40
+default = ["all"]
41
+all = ["wws_config", "wws_router", "wws_server"]
42
+wws_config = []
43
+wws_router = []
44
+wws_server = []
45
+
46
vendored-openssl = ["wws-project/vendored-openssl"]
47
48
[workspace]
src/lib.rs
@@ -0,0 +1,9 @@
1
+// Copyright 2022-2023 VMware, Inc.
2
+// SPDX-License-Identifier: Apache-2.0
3
4
+#[cfg(feature = "wws_config")]
5
+pub use wws_config;
6
+#[cfg(feature = "wws_router")]
7
+pub use wws_router;
8
+#[cfg(feature = "wws_server")]
9
+pub use wws_server;
0 commit comments