Skip to content

Commit

Permalink
chore: exclude test files from being published to crates.io
Browse files Browse the repository at this point in the history
The limit of 10MB imposed by `crates.io` doesn't allow to upload the test cases.
  • Loading branch information
plusvic committed Apr 4, 2024
1 parent 5a23a86 commit b4978a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ homepage.workspace = true
keywords.workspace = true
rust-version.workspace = true

# Exclude test files from the package published to crates.io, as there's a
# limit of 10MB for the total package size.
exclude = [
"src/modules/**/*.zip",
"src/modules/**/*.out"
]

[features]
# When this feature is enabled the OpenSSL library is linked statically.
# However, you need to specify the path where the library and its header files
Expand Down

0 comments on commit b4978a1

Please sign in to comment.