|
1 | 1 | [package]
|
2 | 2 | name = "scaphandre"
|
3 |
| -version = "1.0.1" |
| 3 | +version = "1.0.2" |
4 | 4 | authors = [ "Benoit Petit <[email protected]>"]
|
5 | 5 | edition = "2021"
|
6 | 6 | license = "Apache-2.0"
|
@@ -29,23 +29,40 @@ chrono = "0.4"
|
29 | 29 | docker-sync = { version = "0.1.2", optional = true }
|
30 | 30 | k8s-sync = { version = "0.2.3", optional = true }
|
31 | 31 | hyper = { version = "0.14", features = ["full"], optional = true }
|
32 |
| -tokio = { version = "1.26.0", features = ["full"], optional = true} |
33 |
| -sysinfo = { version = "0.28.3"} |
| 32 | +tokio = { version = "1.26.0", features = ["full"], optional = true } |
| 33 | +sysinfo = { version = "0.28.3" } |
34 | 34 | isahc = { version = "1.7.2", optional = true }
|
35 |
| -ctrlc = { version = "3.4", features = [ "termination" ] } |
| 35 | +ctrlc = { version = "3.4", features = ["termination"] } |
36 | 36 |
|
37 | 37 | [target.'cfg(target_os="linux")'.dependencies]
|
38 | 38 | procfs = { version = "0.15.0" }
|
39 | 39 |
|
40 | 40 | [target.'cfg(target_os="windows")'.dependencies]
|
41 |
| -windows = { version = "0.27.0", features = ["alloc","Win32_Storage_FileSystem","Win32_Foundation","Win32_Security","Win32_System_IO","Win32_System_Ioctl","Win32_System_Threading", "Win32_System_SystemInformation"]} |
| 41 | +windows = { version = "0.27.0", features = [ |
| 42 | + "alloc", |
| 43 | + "Win32_Storage_FileSystem", |
| 44 | + "Win32_Foundation", |
| 45 | + "Win32_Security", |
| 46 | + "Win32_System_IO", |
| 47 | + "Win32_System_Ioctl", |
| 48 | + "Win32_System_Threading", |
| 49 | + "Win32_System_SystemInformation", |
| 50 | +] } |
42 | 51 | windows-service = { version = "0.6.0" }
|
43 | 52 | raw-cpuid = { version = "10.5.0" }
|
44 |
| -core_affinity = { version = "0.8.1"} |
| 53 | +core_affinity = { version = "0.8.1" } |
45 | 54 | x86 = { version = "0.52.0" }
|
46 | 55 |
|
47 | 56 | [features]
|
48 |
| -default = ["prometheus", "riemann", "warpten", "json", "containers", "prometheuspush", "qemu"] |
| 57 | +default = [ |
| 58 | + "prometheus", |
| 59 | + "riemann", |
| 60 | + "warpten", |
| 61 | + "json", |
| 62 | + "containers", |
| 63 | + "prometheuspush", |
| 64 | + "qemu", |
| 65 | +] |
49 | 66 | prometheus = ["hyper", "tokio"]
|
50 | 67 | riemann = ["riemann_client"]
|
51 | 68 | json = ["serde", "serde_json"]
|
|
0 commit comments