We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ee01b commit b3fcaf7Copy full SHA for b3fcaf7
src/rust/lib_ccxr/Cargo.toml
@@ -17,18 +17,17 @@ crc32fast = "1.4.2"
17
num_enum = "0.6.1"
18
prost = "0.13.5"
19
lazy_static = "1.5.0"
20
-nanomsg-sys = "0.7.2"
21
-libc = "0.2.172"
22
-
+nanomsg-sys = { version = "0.7.2", optional = true }
+libc = { version = "0.2.172", optional = true }
23
[features]
24
default = [
25
- "enable_sharing",
26
- "wtv_debug",
27
- "enable_ffmpeg",
28
- "debug",
29
- "with_libcurl",
+ "enable_sharing",
+ "wtv_debug",
+ "enable_ffmpeg",
+ "debug",
+ "with_libcurl",
30
]
31
-enable_sharing = []
+enable_sharing = ["nanomsg-sys", "libc"]
32
wtv_debug = []
33
enable_ffmpeg = []
34
debug_out = []
0 commit comments