Skip to content

Commit

Permalink
fix: exclude ci workflows in crate (#41)
Browse files Browse the repository at this point in the history
### Why?

It seems `.github` dir and its content seem to be packaged into the
crate.

### What's changed?

- Excluded `.github/**/*` in `[package]` section of `cargo.toml`.
  • Loading branch information
Mollemoll authored May 16, 2024
1 parent a8b7b45 commit aced11f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/Mollemoll/tax-ids"
keywords = ["tax", "vat", "vies", "eu"]
categories = ["finance", "api-bindings", "localization", "parser-implementations"]
exclude = [
".github/**/*",
]

[dependencies]
lazy_static = "1.4.0"
Expand All @@ -25,4 +28,3 @@ eu_vat = ["roxmltree"]
gb_vat = []
ch_vat = ["roxmltree"]
no_vat = ["toml"]

0 comments on commit aced11f

Please sign in to comment.