File tree Expand file tree Collapse file tree 7 files changed +537
-352
lines changed Expand file tree Collapse file tree 7 files changed +537
-352
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,12 @@ rustfmt_task:
19
19
linux_task :
20
20
matrix :
21
21
- container :
22
- image : rust:1.36 .0
22
+ image : rust:1.38 .0
23
23
- container :
24
24
image : rust:latest
25
25
- allow_failures : true
26
26
container :
27
27
image : rustlang/rust:nightly
28
- keyutils_script : apt-get update && apt-get install libkeyutils-dev
29
28
lockfile_script : cargo generate-lockfile
30
29
cargo_cache :
31
30
folder : $CARGO_HOME/registry
@@ -50,7 +49,6 @@ coverage_task:
50
49
image : rust:latest
51
50
environment :
52
51
CODECOV_TOKEN : ENCRYPTED[1e221ef78a37c960613ff80db7141f3158e3218031934395466f4720f450b7acfd74e587819435ce9be0b13fa1b68f1b]
53
- keyutils_script : apt-get update && apt-get install libkeyutils-dev
54
52
tarpaulin_cache :
55
53
folder : .ci
56
54
populate_script : .ci/tarpaulin.sh
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ edition = "2018"
13
13
[workspace ]
14
14
members = [" keyutils-raw" ]
15
15
16
- [features ]
17
- static = [" keyutils-raw/static" ]
18
-
19
16
[dev-dependencies ]
20
17
lazy_static = " 1"
21
18
regex = " 1"
@@ -26,7 +23,9 @@ semver = "*"
26
23
[dependencies ]
27
24
bitflags = " 1.0.4"
28
25
errno = " 0.2"
26
+ itertools = " 0.9"
29
27
keyutils-raw = { path = " keyutils-raw" }
30
28
log = " 0.4.4"
29
+ uninit = " 0.3"
31
30
32
- libc = " 0.2"
31
+ libc = " 0.2.68 "
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ description = "Raw bindings to Linux keyring syscalls"
7
7
repository = " https://github.com/mathstuf/rust-keyutils.git"
8
8
homepage = " https://github.com/mathstuf/rust-keyutils"
9
9
keywords = [" keyutils" ]
10
- links = " keyutils"
11
10
edition = " 2018"
12
11
13
- [features ]
14
- static = []
15
-
16
12
[dependencies ]
13
+ log = " 0.4.4"
14
+
15
+ errno = " 0.2"
17
16
libc = " 0.2"
17
+ uninit = " 0.3"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments