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.
extern crate pkg_config
1 parent 53922c4 commit bcccda0Copy full SHA for bcccda0
src/lib.rs
@@ -38,8 +38,6 @@
38
//! Find the system library named `foo`, with minimum version 1.2.3:
39
//!
40
//! ```no_run
41
-//! extern crate pkg_config;
42
-//!
43
//! fn main() {
44
//! pkg_config::Config::new().atleast_version("1.2.3").probe("foo").unwrap();
45
//! }
@@ -49,8 +47,6 @@
49
47
//! recommended):
50
48
51
52
53
54
55
//! pkg_config::probe_library("foo").unwrap();
56
@@ -59,8 +55,6 @@
59
//! Configure how library `foo` is linked to.
60
61
57
62
63
64
58
65
//! pkg_config::Config::new().atleast_version("1.2.3").statik(true).probe("foo").unwrap();
66
0 commit comments