File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1717
1818[dependencies ]
1919async-trait = { version = " 0.1" }
20- bollard = { version = " 0.20 .0" , features = [" buildkit_providerless" , " time" ] }
20+ bollard = { version = " 0.21 .0" , features = [" buildkit_providerless" , " time" ] }
2121http = " 1.1"
2222bytes = " 1.6.0"
2323conquer-once = { version = " 0.4" , optional = true }
Original file line number Diff line number Diff line change @@ -419,9 +419,9 @@ where
419419impl From < & Mount > for bollard:: models:: Mount {
420420 fn from ( mount : & Mount ) -> Self {
421421 let mount_type = match mount. mount_type ( ) {
422- MountType :: Bind => bollard:: models:: MountTypeEnum :: BIND ,
423- MountType :: Volume => bollard:: models:: MountTypeEnum :: VOLUME ,
424- MountType :: Tmpfs => bollard:: models:: MountTypeEnum :: TMPFS ,
422+ MountType :: Bind => bollard:: models:: MountType :: BIND ,
423+ MountType :: Volume => bollard:: models:: MountType :: VOLUME ,
424+ MountType :: Tmpfs => bollard:: models:: MountType :: TMPFS ,
425425 } ;
426426
427427 let is_read_only = matches ! ( mount. access_mode( ) , AccessMode :: ReadOnly ) ;
You can’t perform that action at this time.
0 commit comments