diff options
author | Nadrieril | 2020-06-24 14:30:12 +0100 |
---|---|---|
committer | Nadrieril | 2020-06-24 15:00:45 +0100 |
commit | 9a256dd5b84875c208fe316f6b35b3f17672dcce (patch) | |
tree | fe191e86e7690f91a751118dc81da4b420f2d01d | |
parent | a4c28375e2dc98582b3e0d7a00c53b6853d7d4b7 (diff) |
chore: reduce crate size using cargo-diet
-rw-r--r-- | dhall/Cargo.toml | 1 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index 214ace6..2844779 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -9,6 +9,7 @@ readme = "README.md" repository = "https://github.com/Nadrieril/dhall-rust" edition = "2018" build = "build.rs" +include = ["src/**/*", "README.md", "build.rs"] [dependencies] annotate-snippets = "0.7.0" diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 99ef7bf..7fd901d 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -9,6 +9,7 @@ readme = "../README.md" repository = "https://github.com/Nadrieril/dhall-rust" keywords = ["serde", "serialization", "dhall"] edition = "2018" +include = ["src/**/*"] [dependencies] serde = { version = "1.0", features = ["derive"] } |