diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-10-16 19:10:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-16 19:10:51 +0200 |
| commit | 98ea131a6e5f3e358a1967975b19730d32b3a0a4 (patch) | |
| tree | 4a93ed6af41dd03cb6a1b3236bc77dd8da7c0b5c | |
| parent | cacde6767f4b867fdf25b919c068541e6afae7b8 (diff) | |
| parent | 83425967cb01c2e11a22e8bdd75486c1f1b53fc0 (diff) | |
| download | rust-98ea131a6e5f3e358a1967975b19730d32b3a0a4.tar.gz rust-98ea131a6e5f3e358a1967975b19730d32b3a0a4.zip | |
Rollup merge of #116790 - klensy:opt-dist-tabled-no-derive, r=Kobzol
opt-dist: disable unused features for tabled crate Features looks unused, so left only used ones. r? `@Kobzol`
| -rw-r--r-- | Cargo.lock | 38 | ||||
| -rw-r--r-- | src/tools/opt-dist/Cargo.toml | 2 |
2 files changed, 1 insertions, 39 deletions
diff --git a/Cargo.lock b/Cargo.lock index 8e8440f5ef0..ab33f6f030a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2971,30 +2971,6 @@ dependencies = [ ] [[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] name = "proc-macro-hack" version = "0.5.20+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -5252,24 +5228,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d38d39c754ae037a9bc3ca1580a985db7371cd14f1229172d1db9093feb6739" dependencies = [ "papergrid", - "tabled_derive", "unicode-width", ] [[package]] -name = "tabled_derive" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99f688a08b54f4f02f0a3c382aefdb7884d3d69609f785bd253dc033243e3fe4" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] name = "tar" version = "0.4.38" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src/tools/opt-dist/Cargo.toml b/src/tools/opt-dist/Cargo.toml index c212e8aafe1..9e852b0645a 100644 --- a/src/tools/opt-dist/Cargo.toml +++ b/src/tools/opt-dist/Cargo.toml @@ -23,4 +23,4 @@ glob = "0.3" tempfile = "3.5" derive_builder = "0.12" clap = { version = "4", features = ["derive"] } -tabled = "0.13" +tabled = { version = "0.13", default-features = false, features = ["std"] } |
