Skip to content
This repository was archived by the owner on Jun 8, 2020. It is now read-only.

Commit c835a1a

Browse files
committed
Exclude a bunch of things from cargo package.
Having servo fetch skia from crates.io would help with issues like #7687, as the compressed crate is 12 MB rather than 330 MB of git history. It’s still over the 10 MB limit of crates.io, though. This excludes some of the repository’s directory from the archive created by `cargo package` to bring it to 5 MB, while the "Verifying" phase (running `cargo build` from sources extracted again from the archive) still succeeds. Before we can publish skia we still need to publish all the recursive dependencies.
1 parent 1aa954c commit c835a1a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ version = "0.0.20130412"
55
authors = ["The Skia Project Developers and The Servo Project Developers"]
66
links = "skia"
77
build = "build.rs"
8+
exclude = [
9+
"experimental/*",
10+
"expectations/*",
11+
"platform_tools/*",
12+
"tools/*",
13+
"tests/*",
14+
]
815

916
[dependencies]
1017
euclid = "0.2"

0 commit comments

Comments
 (0)