We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5dd25 commit 6e34e65Copy full SHA for 6e34e65
Makefile.in
@@ -13,7 +13,7 @@ RUST_SRC=$(shell find $(VPATH)/. -type f -name '*.rs')
13
all: libcssparser.dummy
14
15
libcssparser.dummy: lib.rs $(RUST_SRC)
16
- $(RUSTC) $(RUSTFLAGS) $< --crate-type=lib --out-dir .
+ $(RUSTC) $(RUSTFLAGS) $< --out-dir .
17
touch $@
18
19
cssparser-test: lib.rs $(RUST_SRC)
lib.rs
@@ -4,6 +4,9 @@
4
5
#[crate_id = "github.com/mozilla-servo/rust-cssparser#cssparser:0.1"];
6
#[feature(globs, macro_rules)];
7
+#[crate_type = "lib"];
8
+#[crate_type = "dylib"];
9
+#[crate_type = "rlib"];
10
11
extern crate extra;
12
extern crate encoding; // https://github.com/lifthrasiir/rust-encoding
0 commit comments