Skip to content

Commit 8cc45ea

Browse files
committed
Merge remote-tracking branch 'upstream/master' into layout
2 parents a9e7037 + b054a80 commit 8cc45ea

File tree

20 files changed

+991
-912
lines changed

20 files changed

+991
-912
lines changed

doc-template/readme.template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $$[TOC]$$
4040
To use Plotters, you can simply add Plotters into your `Cargo.toml`
4141
```toml
4242
[dependencies]
43-
plotters = "^$LATEST_VERSION"
43+
plotters = "$LATEST_VERSION"
4444
```
4545

4646
And the following code draws a quadratic function. `src/main.rs`,

plotters-doc-data

src/chart/builder.rs

+1
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ impl<'a, 'b, DB: DrawingBackend> ChartBuilder<'a, 'b, DB> {
313313
/// - `y_spec`: The specification of Y axis
314314
/// - `z_spec`: The specification of Z axis
315315
/// - Returns: A chart context
316+
#[allow(clippy::type_complexity)]
316317
pub fn build_cartesian_3d<X: AsRangedCoord, Y: AsRangedCoord, Z: AsRangedCoord>(
317318
&mut self,
318319
x_spec: X,

0 commit comments

Comments
 (0)