Skip to content

Commit f2ec18a

Browse files
authored
Merge pull request #4 from facorread/pr-ci-master
Proposal to use git-master dependencies for collaboration, testing, and CI
2 parents 49f7a63 + 47b3d84 commit f2ec18a

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

9-
[dependencies]
10-
plotters-backend = "^0.0.*"
9+
[dependencies.plotters-backend]
10+
git = "https://github.com/plotters-rs/plotters-backend"
11+
# version = "0.3.1"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ impl DrawingBackend for TextDrawingBackend {
106106
&mut self,
107107
mut upper_left: (i32, i32),
108108
mut bottom_right: (i32, i32),
109-
style: &S,
110-
fill: bool,
109+
_style: &S,
110+
_fill: bool,
111111
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
112112
upper_left.0 = upper_left.0.max(0).min(self.size.0 as i32);
113113
upper_left.1 = upper_left.1.max(0).min(self.size.1 as i32);

0 commit comments

Comments
 (0)