Skip to content

Reference ion-rust unrelease changes #2930

Reference ion-rust unrelease changes

Reference ion-rust unrelease changes #2930

Triggered via push January 2, 2025 18:52
Status Success
Total duration 8m 28s
Artifacts 1
Create conformance report for `push` and `pull_request` events
6m 1s
Create conformance report for `push` and `pull_request` events
Matrix: Build and Test
Matrix: cargo-deny
Create comparison report for `pull_request` event
0s
Create comparison report for `pull_request` event
Fit to window
Zoom out
Zoom in

Annotations

1 error and 102 warnings
Create conformance report for `push` and `pull_request` events
Process completed with exit code 101.
cargo-deny (bans licenses sources)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
cargo-deny (advisories)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
doc list item without indentation: partiql-conformance-tests/src/bin/generate_comparison_report.rs#L23
warning: doc list item without indentation --> partiql-conformance-tests/src/bin/generate_comparison_report.rs:23:5 | 23 | /// regressed behavior) | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: indent this line | 23 | /// regressed behavior) | ++
unreachable pattern: partiql-logical-planner/src/typer.rs#L348
warning: unreachable pattern --> partiql-logical-planner/src/typer.rs:348:21 | 348 | _ => { | ^ no value can reach this | note: multiple earlier patterns match some of the same values --> partiql-logical-planner/src/typer.rs:348:21 | 336 | Lit::Null | Lit::Missing => type_undefined!(), | ------------------------ matches some of the same values 337 | Lit::Int8(_) | Lit::Int16(_) | Lit::Int32(_) | Lit::Int64(_) => { | ------------------------------------------------------------ matches some of the same values ... 340 | Lit::Decimal(_) => type_decimal!(), | --------------- matches some of the same values 341 | Lit::Double(_) => type_float64!(), | -------------- matches some of the same values ... 348 | _ => { | ^ ...and 6 other patterns collectively make this unreachable = note: `#[warn(unreachable_patterns)]` on by default
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L164
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:164:13 | 163 | pub struct EvaluationFailAssertion { | ----------------------- field in this struct 164 | pub result: String, | ^^^^^^ | = note: `EvaluationFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L157
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:157:13 | 156 | pub struct EvaluationSuccessAssertion { | -------------------------- field in this struct 157 | pub result: String, | ^^^^^^ | = note: `EvaluationSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L152
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:152:13 | 151 | pub struct StaticAnalysisFailAssertion { | --------------------------- field in this struct 152 | pub result: String, | ^^^^^^ | = note: `StaticAnalysisFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L147
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:147:13 | 146 | pub struct SyntaxFailAssertion { | ------------------- field in this struct 147 | pub result: String, | ^^^^^^ | = note: `SyntaxFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L142
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:142:13 | 141 | pub struct SyntaxSuccessAssertion { | ---------------------- field in this struct 142 | pub result: String, | ^^^^^^ | = note: `SyntaxSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L75
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:75:28 | 75 | StaticAnalysisFail(StaticAnalysisFailAssertion), | ------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 75 | StaticAnalysisFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L74
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:74:20 | 74 | SyntaxFail(SyntaxFailAssertion), | ---------- ^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 74 | SyntaxFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L73
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:73:23 | 73 | SyntaxSuccess(SyntaxSuccessAssertion), | ------------- ^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 73 | SyntaxSuccess(()), | ~~
unexpected `cfg` condition value: `serde`: partiql-eval/src/eval/mod.rs#L149
warning: unexpected `cfg` condition value: `serde` --> partiql-eval/src/eval/mod.rs:149:12 | 149 | #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] | ^^^^^^^^^^^^^^^^^ help: remove the condition | = note: no expected values for `feature` = help: consider adding `serde` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
spawned process is never `wait()`ed on: partiql-conformance-tests/build.rs#L11
warning: spawned process is never `wait()`ed on --> partiql-conformance-tests/build.rs:11:5 | 11 | / Command::new("cargo") 12 | | .arg("fmt") 13 | | .arg("--") 14 | | .spawn() 15 | | .expect("cargo fmt of tests/ failed"); | | ^- help: try: `.wait()` | |_____________________________________________| | | = note: not doing so might leave behind zombie processes = note: see https://doc.rust-lang.org/stable/std/process/struct.Child.html#warning = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes = note: `#[warn(clippy::zombie_processes)]` on by default
variant `Bag` is never constructed: extension/partiql-extension-ion/src/util.rs#L11
warning: variant `Bag` is never constructed --> extension/partiql-extension-ion/src/util.rs:11:5 | 8 | pub enum PartiqlValueTarget<T> { | ------------------ variant in this enum ... 11 | Bag(Vec<T>), | ^^^ | = note: `#[warn(dead_code)]` on by default
type `boxed_ion::BoxedIonStreamType` is more private than the item `boxed_ion::BoxedIon::parse`: extension/partiql-extension-ion/src/boxed_ion.rs#L380
warning: type `boxed_ion::BoxedIonStreamType` is more private than the item `boxed_ion::BoxedIon::parse` --> extension/partiql-extension-ion/src/boxed_ion.rs:380:5 | 380 | pub fn parse(data: Vec<u8>, expected: BoxedIonStreamType) -> IonResult<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::parse` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonStreamType` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:452:1 | 452 | enum BoxedIonStreamType { | ^^^^^^^^^^^^^^^^^^^^^^^
type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new_value`: extension/partiql-extension-ion/src/boxed_ion.rs#L365
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new_value` --> extension/partiql-extension-ion/src/boxed_ion.rs:365:5 | 365 | pub fn new_value(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Value { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new_value` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^
type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new_value`: extension/partiql-extension-ion/src/boxed_ion.rs#L365
warning: type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new_value` --> extension/partiql-extension-ion/src/boxed_ion.rs:365:5 | 365 | pub fn new_value(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Value { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new_value` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonValue` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:459:1 | 459 | enum BoxedIonValue { | ^^^^^^^^^^^^^^^^^^
type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new`: extension/partiql-extension-ion/src/boxed_ion.rs#L359
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new` --> extension/partiql-extension-ion/src/boxed_ion.rs:359:5 | 359 | pub fn new(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^
type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new`: extension/partiql-extension-ion/src/boxed_ion.rs#L359
warning: type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new` --> extension/partiql-extension-ion/src/boxed_ion.rs:359:5 | 359 | pub fn new(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonValue` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:459:1 | 459 | enum BoxedIonValue { | ^^^^^^^^^^^^^^^^^^ = note: `#[warn(private_bounds)]` on by default
type `boxed_ion::IonContext` is more private than the item `boxed_ion::IonContextPtr`: extension/partiql-extension-ion/src/boxed_ion.rs#L83
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::IonContextPtr` --> extension/partiql-extension-ion/src/boxed_ion.rs:83:1 | 83 | pub type IonContextPtr = Rc<RefCell<IonContext>>; | ^^^^^^^^^^^^^^^^^^^^^^ type alias `boxed_ion::IonContextPtr` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^ = note: `#[warn(private_interfaces)]` on by default
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L336
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:336:21 | 336 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L322
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:322:37 | 322 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `k`: extension/partiql-extension-ion/src/boxed_ion.rs#L311
warning: unused variable: `k` --> extension/partiql-extension-ion/src/boxed_ion.rs:311:23 | 311 | fn take_val(self, k: &BindingsName<'_>) -> Option<Value> { | ^ help: if this is intentional, prefix it with an underscore: `_k`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L304
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:304:21 | 304 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L290
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:290:37 | 290 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L276
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:276:21 | 276 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L271
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:271:37 | 271 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L251
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:251:21 | 251 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L229
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:229:21 | 229 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L209
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:209:21 | 209 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L163
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:163:37 | 163 | BoxedIonValue::Sequence(seq) => todo!("into_lower seq"), | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L144
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:144:37 | 144 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L130
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:130:37 | 130 | BoxedIonValue::Sequence(seq) => DatumCategoryRef::Sequence(DatumSeqRef::Dynamic(self)), | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `state`: extension/partiql-extension-ion/src/boxed_ion.rs#L113
warning: unused variable: `state` --> extension/partiql-extension-ion/src/boxed_ion.rs:113:31 | 113 | fn hash<H: Hasher>(&self, state: &mut H) { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_state`
unused variable: `deserializer`: extension/partiql-extension-ion/src/boxed_ion.rs#L104
warning: unused variable: `deserializer` --> extension/partiql-extension-ion/src/boxed_ion.rs:104:23 | 104 | fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error> | ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_deserializer`
unused variable: `serializer`: extension/partiql-extension-ion/src/boxed_ion.rs#L94
warning: unused variable: `serializer` --> extension/partiql-extension-ion/src/boxed_ion.rs:94:28 | 94 | fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error> | ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_serializer` | = note: `#[warn(unused_variables)]` on by default
unused import: `ion_rs_old::IonReader`: extension/partiql-extension-ion/src/boxed_ion.rs#L6
warning: unused import: `ion_rs_old::IonReader` --> extension/partiql-extension-ion/src/boxed_ion.rs:6:5 | 6 | use ion_rs_old::IonReader; | ^^^^^^^^^^^^^^^^^^^^^
unused imports: `Deserialize` and `Serialize`: extension/partiql-extension-ion/src/lib.rs#L5
warning: unused imports: `Deserialize` and `Serialize` --> extension/partiql-extension-ion/src/lib.rs:5:13 | 5 | use serde::{Deserialize, Serialize}; | ^^^^^^^^^^^ ^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L164
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:164:13 | 163 | pub struct EvaluationFailAssertion { | ----------------------- field in this struct 164 | pub result: String, | ^^^^^^ | = note: `EvaluationFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L157
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:157:13 | 156 | pub struct EvaluationSuccessAssertion { | -------------------------- field in this struct 157 | pub result: String, | ^^^^^^ | = note: `EvaluationSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L152
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:152:13 | 151 | pub struct StaticAnalysisFailAssertion { | --------------------------- field in this struct 152 | pub result: String, | ^^^^^^ | = note: `StaticAnalysisFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L147
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:147:13 | 146 | pub struct SyntaxFailAssertion { | ------------------- field in this struct 147 | pub result: String, | ^^^^^^ | = note: `SyntaxFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L142
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:142:13 | 141 | pub struct SyntaxSuccessAssertion { | ---------------------- field in this struct 142 | pub result: String, | ^^^^^^ | = note: `SyntaxSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L75
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:75:28 | 75 | StaticAnalysisFail(StaticAnalysisFailAssertion), | ------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 75 | StaticAnalysisFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L74
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:74:20 | 74 | SyntaxFail(SyntaxFailAssertion), | ---------- ^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 74 | SyntaxFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L73
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:73:23 | 73 | SyntaxSuccess(SyntaxSuccessAssertion), | ------------- ^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 73 | SyntaxSuccess(()), | ~~
field `0` is never read: partiql-value/src/variant.rs#L114
warning: field `0` is never read --> partiql-value/src/variant.rs:114:28 | 114 | pub struct VariantIter<'a>(BoxedVariantValueIter<'a>); | ----------- ^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this struct | = help: consider removing this field = note: `#[warn(dead_code)]` on by default
unused variable: `doc`: partiql-value/src/value/iter.rs#L43
warning: unused variable: `doc` --> partiql-value/src/value/iter.rs:43:33 | 43 | ValueIter::Embedded(doc) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_doc`
unused variable: `doc`: partiql-value/src/value/iter.rs#L23
warning: unused variable: `doc` --> partiql-value/src/value/iter.rs:23:33 | 23 | ValueIter::Embedded(doc) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_doc` | = note: `#[warn(unused_variables)]` on by default
unnecessary associated type bound for dyn-incompatible associated type: partiql-value/src/boxed_variant.rs#L36
warning: unnecessary associated type bound for dyn-incompatible associated type --> partiql-value/src/boxed_variant.rs:36:60 | 36 | pub type BoxedVariantTypeTag<D> = Box<dyn BoxedVariantType<Doc = D>>; | ^^^^^^^ help: remove this bound | = note: this associated type has a `where Self: Sized` bound, and while the associated type can be specified, it cannot be used because trait objects are never `Sized` = note: `#[warn(unused_associated_type_bounds)]` on by default
unused imports: `Deserialize` and `Serialize`: partiql-value/src/lib.rs#L30
warning: unused imports: `Deserialize` and `Serialize` --> partiql-value/src/lib.rs:30:13 | 30 | use serde::{Deserialize, Serialize}; | ^^^^^^^^^^^ ^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
doc list item without indentation: partiql-conformance-tests/src/bin/generate_comparison_report.rs#L23
warning: doc list item without indentation --> partiql-conformance-tests/src/bin/generate_comparison_report.rs:23:5 | 23 | /// regressed behavior) | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: indent this line | 23 | /// regressed behavior) | ++
unreachable pattern: partiql-logical-planner/src/typer.rs#L348
warning: unreachable pattern --> partiql-logical-planner/src/typer.rs:348:21 | 348 | _ => { | ^ no value can reach this | note: multiple earlier patterns match some of the same values --> partiql-logical-planner/src/typer.rs:348:21 | 336 | Lit::Null | Lit::Missing => type_undefined!(), | ------------------------ matches some of the same values 337 | Lit::Int8(_) | Lit::Int16(_) | Lit::Int32(_) | Lit::Int64(_) => { | ------------------------------------------------------------ matches some of the same values ... 340 | Lit::Decimal(_) => type_decimal!(), | --------------- matches some of the same values 341 | Lit::Double(_) => type_float64!(), | -------------- matches some of the same values ... 348 | _ => { | ^ ...and 6 other patterns collectively make this unreachable = note: `#[warn(unreachable_patterns)]` on by default
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L164
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:164:13 | 163 | pub struct EvaluationFailAssertion { | ----------------------- field in this struct 164 | pub result: String, | ^^^^^^ | = note: `EvaluationFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L157
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:157:13 | 156 | pub struct EvaluationSuccessAssertion { | -------------------------- field in this struct 157 | pub result: String, | ^^^^^^ | = note: `EvaluationSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L152
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:152:13 | 151 | pub struct StaticAnalysisFailAssertion { | --------------------------- field in this struct 152 | pub result: String, | ^^^^^^ | = note: `StaticAnalysisFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L147
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:147:13 | 146 | pub struct SyntaxFailAssertion { | ------------------- field in this struct 147 | pub result: String, | ^^^^^^ | = note: `SyntaxFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L142
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:142:13 | 141 | pub struct SyntaxSuccessAssertion { | ---------------------- field in this struct 142 | pub result: String, | ^^^^^^ | = note: `SyntaxSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L75
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:75:28 | 75 | StaticAnalysisFail(StaticAnalysisFailAssertion), | ------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 75 | StaticAnalysisFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L74
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:74:20 | 74 | SyntaxFail(SyntaxFailAssertion), | ---------- ^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 74 | SyntaxFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L73
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:73:23 | 73 | SyntaxSuccess(SyntaxSuccessAssertion), | ------------- ^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 73 | SyntaxSuccess(()), | ~~
unexpected `cfg` condition value: `serde`: partiql-eval/src/eval/mod.rs#L149
warning: unexpected `cfg` condition value: `serde` --> partiql-eval/src/eval/mod.rs:149:12 | 149 | #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] | ^^^^^^^^^^^^^^^^^ help: remove the condition | = note: no expected values for `feature` = help: consider adding `serde` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default
spawned process is never `wait()`ed on: partiql-conformance-tests/build.rs#L11
warning: spawned process is never `wait()`ed on --> partiql-conformance-tests/build.rs:11:5 | 11 | / Command::new("cargo") 12 | | .arg("fmt") 13 | | .arg("--") 14 | | .spawn() 15 | | .expect("cargo fmt of tests/ failed"); | | ^- help: try: `.wait()` | |_____________________________________________| | | = note: not doing so might leave behind zombie processes = note: see https://doc.rust-lang.org/stable/std/process/struct.Child.html#warning = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes = note: `#[warn(clippy::zombie_processes)]` on by default
variant `Bag` is never constructed: extension/partiql-extension-ion/src/util.rs#L11
warning: variant `Bag` is never constructed --> extension/partiql-extension-ion/src/util.rs:11:5 | 8 | pub enum PartiqlValueTarget<T> { | ------------------ variant in this enum ... 11 | Bag(Vec<T>), | ^^^ | = note: `#[warn(dead_code)]` on by default
type `boxed_ion::BoxedIonStreamType` is more private than the item `boxed_ion::BoxedIon::parse`: extension/partiql-extension-ion/src/boxed_ion.rs#L380
warning: type `boxed_ion::BoxedIonStreamType` is more private than the item `boxed_ion::BoxedIon::parse` --> extension/partiql-extension-ion/src/boxed_ion.rs:380:5 | 380 | pub fn parse(data: Vec<u8>, expected: BoxedIonStreamType) -> IonResult<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::parse` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonStreamType` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:452:1 | 452 | enum BoxedIonStreamType { | ^^^^^^^^^^^^^^^^^^^^^^^
type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new_value`: extension/partiql-extension-ion/src/boxed_ion.rs#L365
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new_value` --> extension/partiql-extension-ion/src/boxed_ion.rs:365:5 | 365 | pub fn new_value(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Value { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new_value` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^
type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new_value`: extension/partiql-extension-ion/src/boxed_ion.rs#L365
warning: type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new_value` --> extension/partiql-extension-ion/src/boxed_ion.rs:365:5 | 365 | pub fn new_value(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Value { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new_value` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonValue` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:459:1 | 459 | enum BoxedIonValue { | ^^^^^^^^^^^^^^^^^^
type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new`: extension/partiql-extension-ion/src/boxed_ion.rs#L359
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::BoxedIon::new` --> extension/partiql-extension-ion/src/boxed_ion.rs:359:5 | 359 | pub fn new(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^
type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new`: extension/partiql-extension-ion/src/boxed_ion.rs#L359
warning: type `boxed_ion::BoxedIonValue` is more private than the item `boxed_ion::BoxedIon::new` --> extension/partiql-extension-ion/src/boxed_ion.rs:359:5 | 359 | pub fn new(doc: impl Into<BoxedIonValue>, ctx: IonContextPtr) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ associated function `boxed_ion::BoxedIon::new` is reachable at visibility `pub` | note: but type `boxed_ion::BoxedIonValue` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:459:1 | 459 | enum BoxedIonValue { | ^^^^^^^^^^^^^^^^^^ = note: `#[warn(private_bounds)]` on by default
type `boxed_ion::IonContext` is more private than the item `boxed_ion::IonContextPtr`: extension/partiql-extension-ion/src/boxed_ion.rs#L83
warning: type `boxed_ion::IonContext` is more private than the item `boxed_ion::IonContextPtr` --> extension/partiql-extension-ion/src/boxed_ion.rs:83:1 | 83 | pub type IonContextPtr = Rc<RefCell<IonContext>>; | ^^^^^^^^^^^^^^^^^^^^^^ type alias `boxed_ion::IonContextPtr` is reachable at visibility `pub` | note: but type `boxed_ion::IonContext` is only usable at visibility `pub(self)` --> extension/partiql-extension-ion/src/boxed_ion.rs:67:1 | 67 | struct IonContext { | ^^^^^^^^^^^^^^^^^ = note: `#[warn(private_interfaces)]` on by default
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L336
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:336:21 | 336 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L322
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:322:37 | 322 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `k`: extension/partiql-extension-ion/src/boxed_ion.rs#L311
warning: unused variable: `k` --> extension/partiql-extension-ion/src/boxed_ion.rs:311:23 | 311 | fn take_val(self, k: &BindingsName<'_>) -> Option<Value> { | ^ help: if this is intentional, prefix it with an underscore: `_k`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L304
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:304:21 | 304 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L290
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:290:37 | 290 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L276
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:276:21 | 276 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L271
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:271:37 | 271 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L251
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:251:21 | 251 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L229
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:229:21 | 229 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `e`: extension/partiql-extension-ion/src/boxed_ion.rs#L209
warning: unused variable: `e` --> extension/partiql-extension-ion/src/boxed_ion.rs:209:21 | 209 | Err(e) => todo!(), | ^ help: if this is intentional, prefix it with an underscore: `_e`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L163
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:163:37 | 163 | BoxedIonValue::Sequence(seq) => todo!("into_lower seq"), | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L144
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:144:37 | 144 | BoxedIonValue::Sequence(seq) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `seq`: extension/partiql-extension-ion/src/boxed_ion.rs#L130
warning: unused variable: `seq` --> extension/partiql-extension-ion/src/boxed_ion.rs:130:37 | 130 | BoxedIonValue::Sequence(seq) => DatumCategoryRef::Sequence(DatumSeqRef::Dynamic(self)), | ^^^ help: if this is intentional, prefix it with an underscore: `_seq`
unused variable: `state`: extension/partiql-extension-ion/src/boxed_ion.rs#L113
warning: unused variable: `state` --> extension/partiql-extension-ion/src/boxed_ion.rs:113:31 | 113 | fn hash<H: Hasher>(&self, state: &mut H) { | ^^^^^ help: if this is intentional, prefix it with an underscore: `_state`
unused variable: `deserializer`: extension/partiql-extension-ion/src/boxed_ion.rs#L104
warning: unused variable: `deserializer` --> extension/partiql-extension-ion/src/boxed_ion.rs:104:23 | 104 | fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error> | ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_deserializer`
unused variable: `serializer`: extension/partiql-extension-ion/src/boxed_ion.rs#L94
warning: unused variable: `serializer` --> extension/partiql-extension-ion/src/boxed_ion.rs:94:28 | 94 | fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error> | ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_serializer` | = note: `#[warn(unused_variables)]` on by default
unused import: `ion_rs_old::IonReader`: extension/partiql-extension-ion/src/boxed_ion.rs#L6
warning: unused import: `ion_rs_old::IonReader` --> extension/partiql-extension-ion/src/boxed_ion.rs:6:5 | 6 | use ion_rs_old::IonReader; | ^^^^^^^^^^^^^^^^^^^^^
unused imports: `Deserialize` and `Serialize`: extension/partiql-extension-ion/src/lib.rs#L5
warning: unused imports: `Deserialize` and `Serialize` --> extension/partiql-extension-ion/src/lib.rs:5:13 | 5 | use serde::{Deserialize, Serialize}; | ^^^^^^^^^^^ ^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
field `0` is never read: partiql-value/src/variant.rs#L114
warning: field `0` is never read --> partiql-value/src/variant.rs:114:28 | 114 | pub struct VariantIter<'a>(BoxedVariantValueIter<'a>); | ----------- ^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this struct | = help: consider removing this field = note: `#[warn(dead_code)]` on by default
unused variable: `doc`: partiql-value/src/value/iter.rs#L43
warning: unused variable: `doc` --> partiql-value/src/value/iter.rs:43:33 | 43 | ValueIter::Embedded(doc) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_doc`
unused variable: `doc`: partiql-value/src/value/iter.rs#L23
warning: unused variable: `doc` --> partiql-value/src/value/iter.rs:23:33 | 23 | ValueIter::Embedded(doc) => { | ^^^ help: if this is intentional, prefix it with an underscore: `_doc` | = note: `#[warn(unused_variables)]` on by default
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L164
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:164:13 | 163 | pub struct EvaluationFailAssertion { | ----------------------- field in this struct 164 | pub result: String, | ^^^^^^ | = note: `EvaluationFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L157
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:157:13 | 156 | pub struct EvaluationSuccessAssertion { | -------------------------- field in this struct 157 | pub result: String, | ^^^^^^ | = note: `EvaluationSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L152
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:152:13 | 151 | pub struct StaticAnalysisFailAssertion { | --------------------------- field in this struct 152 | pub result: String, | ^^^^^^ | = note: `StaticAnalysisFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L147
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:147:13 | 146 | pub struct SyntaxFailAssertion { | ------------------- field in this struct 147 | pub result: String, | ^^^^^^ | = note: `SyntaxFailAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `result` is never read: partiql-conformance-test-generator/src/schema.rs#L142
warning: field `result` is never read --> partiql-conformance-test-generator/src/schema.rs:142:13 | 141 | pub struct SyntaxSuccessAssertion { | ---------------------- field in this struct 142 | pub result: String, | ^^^^^^ | = note: `SyntaxSuccessAssertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L75
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:75:28 | 75 | StaticAnalysisFail(StaticAnalysisFailAssertion), | ------------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 75 | StaticAnalysisFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L74
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:74:20 | 74 | SyntaxFail(SyntaxFailAssertion), | ---------- ^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 74 | SyntaxFail(()), | ~~
field `0` is never read: partiql-conformance-test-generator/src/schema.rs#L73
warning: field `0` is never read --> partiql-conformance-test-generator/src/schema.rs:73:23 | 73 | SyntaxSuccess(SyntaxSuccessAssertion), | ------------- ^^^^^^^^^^^^^^^^^^^^^^ | | | field in this variant | = note: `Assertion` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field | 73 | SyntaxSuccess(()), | ~~
unnecessary associated type bound for dyn-incompatible associated type: partiql-value/src/boxed_variant.rs#L36
warning: unnecessary associated type bound for dyn-incompatible associated type --> partiql-value/src/boxed_variant.rs:36:60 | 36 | pub type BoxedVariantTypeTag<D> = Box<dyn BoxedVariantType<Doc = D>>; | ^^^^^^^ help: remove this bound | = note: this associated type has a `where Self: Sized` bound, and while the associated type can be specified, it cannot be used because trait objects are never `Sized` = note: `#[warn(unused_associated_type_bounds)]` on by default
unused imports: `Deserialize` and `Serialize`: partiql-value/src/lib.rs#L30
warning: unused imports: `Deserialize` and `Serialize` --> partiql-value/src/lib.rs:30:13 | 30 | use serde::{Deserialize, Serialize}; | ^^^^^^^^^^^ ^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default

Artifacts

Produced during runtime
Name Size
artifact
59 KB