diff --git a/.workflow/branch-pipeline.yml b/.workflow/branch-pipeline.yml deleted file mode 100644 index 9d2a2926f31b55f68083a3cb58c4cb6d6f43a07f..0000000000000000000000000000000000000000 --- a/.workflow/branch-pipeline.yml +++ /dev/null @@ -1,53 +0,0 @@ -version: '1.0' -name: branch-pipeline -displayName: BranchPipeline -stages: - - stage: - name: compile - displayName: 编译 - steps: - - step: build@maven - name: build_maven - displayName: Maven 构建 - # 支持6、7、8、9、10、11六个版本 - jdkVersion: 8 - # 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本 - mavenVersion: 3.3.9 - # 构建命令 - commands: - - mvn -B clean package -Dmaven.test.skip=true - # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 - artifacts: - # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 - - name: BUILD_ARTIFACT - # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录 - path: - - ./target - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - # 上游构建任务定义的产物名,默认BUILD_ARTIFACT - dependArtifact: BUILD_ARTIFACT - # 上传到制品库时的制品命名,默认output - artifactName: output - dependsOn: build_maven - - stage: - name: release - displayName: 发布 - steps: - - step: publish@release_artifacts - name: publish_release_artifacts - displayName: '发布' - # 上游上传制品任务的产出 - dependArtifact: output - # 发布制品版本号 - version: '1.0.0.0' - # 是否开启版本号自增,默认开启 - autoIncrement: true -triggers: - push: - branches: - exclude: - - master - include: - - .* diff --git a/.workflow/master-pipeline.yml b/.workflow/master-pipeline.yml deleted file mode 100644 index 1f18dd493649ab370d12cb7c2f641708581f7e1e..0000000000000000000000000000000000000000 --- a/.workflow/master-pipeline.yml +++ /dev/null @@ -1,44 +0,0 @@ -version: '1.0' -name: master-pipeline -displayName: MasterPipeline -triggers: - trigger: auto - push: - branches: - include: - - master -stages: - - name: compile - displayName: 编译 - strategy: naturally - trigger: auto - steps: - - step: build@maven - name: build_maven - displayName: Maven 构建 - jdkVersion: 8 - mavenVersion: 3.3.9 - commands: - - cargo build - artifacts: - - name: BUILD_ARTIFACT - path: - - ./target - strategy: {} - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - dependArtifact: BUILD_ARTIFACT - artifactName: output - dependsOn: build_maven - - name: release - displayName: 发布 - strategy: naturally - trigger: auto - steps: - - step: publish@release_artifacts - name: publish_release_artifacts - displayName: 发布 - dependArtifact: output - version: 1.0.0.0 - autoIncrement: true diff --git a/.workflow/pr-pipeline.yml b/.workflow/pr-pipeline.yml deleted file mode 100644 index 3f7579dd405c85f97f77df0357ec4893e616f85f..0000000000000000000000000000000000000000 --- a/.workflow/pr-pipeline.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: '1.0' -name: pr-pipeline -displayName: PRPipeline -stages: - - stage: - name: compile - displayName: 编译 - steps: - - step: build@maven - name: build_maven - displayName: Maven 构建 - # 支持6、7、8、9、10、11六个版本 - jdkVersion: 8 - # 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本 - mavenVersion: 3.3.9 - # 构建命令 - commands: - - mvn -B clean package -Dmaven.test.skip=true - # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 - artifacts: - # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 - - name: BUILD_ARTIFACT - # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径,如通常jar包在target目录下。当前目录为代码库根目录 - path: - - ./target - - step: publish@general_artifacts - name: publish_general_artifacts - displayName: 上传制品 - # 上游构建任务定义的产物名,默认BUILD_ARTIFACT - dependArtifact: BUILD_ARTIFACT - # 构建产物制品库,默认default,系统默认创建 - artifactRepository: default - # 上传到制品库时的制品命名,默认output - artifactName: output - dependsOn: build_maven -triggers: - pr: - branches: - include: - - master diff --git a/Cargo.lock b/Cargo.lock index 93adbc28f79798eb839fa11ef33cc18c3fdf3f3b..f10348951dd49fbfcb5a767601fb39c40c2bf54e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,12 +70,12 @@ dependencies = [ [[package]] name = "basic" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bitflags", "constants", "libc", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", "pathdiff", "pkg-config", @@ -125,7 +125,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "blkid_rs" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bindgen", @@ -177,11 +177,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cgroup" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bitflags", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", "snafu", "walkdir", @@ -282,7 +282,7 @@ dependencies = [ [[package]] name = "cmdproto" -version = "0.5.0" +version = "0.5.1" dependencies = [ "http", "nix 0.24.3", @@ -316,11 +316,11 @@ dependencies = [ [[package]] name = "constants" -version = "0.5.0" +version = "0.5.1" [[package]] name = "core" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bitflags", @@ -330,7 +330,7 @@ dependencies = [ "event", "heed", "libc", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", "serde", "snafu", @@ -374,14 +374,14 @@ dependencies = [ [[package]] name = "device" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bitflags", "event", "fnmatch-sys", "libc", - "log 0.5.0", + "log 0.5.1", "loopdev", "nix 0.24.3", "snafu", @@ -389,7 +389,7 @@ dependencies = [ [[package]] name = "devmaster" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bitflags", @@ -410,7 +410,7 @@ dependencies = [ "kmod_rs", "lazy_static", "libc", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", "rtnetlink", "scsi_generic_rs", @@ -489,7 +489,7 @@ dependencies = [ [[package]] name = "event" -version = "0.5.0" +version = "0.5.1" dependencies = [ "constants", "libc", @@ -571,11 +571,11 @@ dependencies = [ [[package]] name = "fstab" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "inotify", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", ] @@ -681,11 +681,11 @@ dependencies = [ [[package]] name = "getty-generator" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "libc", - "log 0.5.0", + "log 0.5.1", ] [[package]] @@ -772,10 +772,10 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hostname_setup" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", ] @@ -792,14 +792,14 @@ dependencies = [ [[package]] name = "hwdb" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bincode", "constants", "glob", "linked-hash-map", - "log 0.5.0", + "log 0.5.1", "memoffset", "nix 0.24.3", "serde", @@ -876,7 +876,7 @@ checksum = "6b6b0f8557f596a2db592f172015c40d0c149e16a956c7848e733d663f2c6636" [[package]] name = "input_event_codes_rs" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bindgen", ] @@ -952,11 +952,11 @@ dependencies = [ [[package]] name = "kmod_rs" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "kmod-sys", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", ] @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "libtests" -version = "0.5.0" +version = "0.5.1" [[package]] name = "linked-hash-map" @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "log" -version = "0.5.0" +version = "0.5.1" dependencies = [ "libc", "log 0.4.14", @@ -1064,7 +1064,7 @@ dependencies = [ [[package]] name = "macros" -version = "0.5.0" +version = "0.5.1" dependencies = [ "proc-macro2", "quote", @@ -1115,7 +1115,7 @@ dependencies = [ [[package]] name = "mount" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "constants", @@ -1123,7 +1123,7 @@ dependencies = [ "epoll", "event", "libc", - "log 0.5.0", + "log 0.5.1", "macros", "nix 0.24.3", "once_cell", @@ -1575,21 +1575,21 @@ dependencies = [ [[package]] name = "random_seed" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "libc", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", "xattr", ] [[package]] name = "rc-local-generator" -version = "0.5.0" +version = "0.5.1" dependencies = [ "libc", - "log 0.5.0", + "log 0.5.1", ] [[package]] @@ -1685,14 +1685,14 @@ dependencies = [ [[package]] name = "scsi_generic_rs" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bindgen", ] [[package]] name = "sctl" -version = "0.5.0" +version = "0.5.1" dependencies = [ "clap", "cmdproto", @@ -1702,7 +1702,7 @@ dependencies = [ [[package]] name = "selinux" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bindgen", ] @@ -1740,7 +1740,7 @@ dependencies = [ [[package]] name = "service" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "cgroup", @@ -1750,7 +1750,7 @@ dependencies = [ "event", "libc", "libtests", - "log 0.5.0", + "log 0.5.1", "macros", "nix 0.24.3", "once_cell", @@ -1809,7 +1809,7 @@ dependencies = [ [[package]] name = "socket" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "confique", @@ -1817,7 +1817,7 @@ dependencies = [ "core", "event", "libtests", - "log 0.5.0", + "log 0.5.1", "macros", "nix 0.24.3", "once_cell", @@ -1837,10 +1837,10 @@ dependencies = [ [[package]] name = "switch_root" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", ] @@ -1889,16 +1889,16 @@ dependencies = [ [[package]] name = "sysMaster" -version = "0.5.0" +version = "0.5.1" dependencies = [ - "log 0.5.0", + "log 0.5.1", "mio", "nix 0.24.3", ] [[package]] name = "sysmaster" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "bitflags", @@ -1914,7 +1914,7 @@ dependencies = [ "lazy_static", "libc", "libtests", - "log 0.5.0", + "log 0.5.1", "mount", "nix 0.24.3", "once_cell", @@ -1930,17 +1930,17 @@ dependencies = [ [[package]] name = "sysmaster-hwdb" -version = "0.5.0" +version = "0.5.1" dependencies = [ "clap", "hwdb", - "log 0.5.0", + "log 0.5.1", "nix 0.24.3", ] [[package]] name = "sysmonitor" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "nix 0.24.3", @@ -1952,12 +1952,12 @@ dependencies = [ [[package]] name = "target" -version = "0.5.0" +version = "0.5.1" dependencies = [ "basic", "constants", "core", - "log 0.5.0", + "log 0.5.1", "macros", "nix 0.24.3", "once_cell", @@ -2214,7 +2214,7 @@ checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" [[package]] name = "watchdog" -version = "0.5.0" +version = "0.5.1" dependencies = [ "nix 0.24.3", ] diff --git a/Cargo.toml b/Cargo.toml index 47af216df559c11c7329e2a992c771db91d6a7cb..6f5246235ac90d8c19d481e4a382d1a559236860 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysMaster" -version = "0.5.0" +version = "0.5.1" authors = ["sysmaster"] homepage = "http://www.sysmaster.org" keywords = ["sysmaster", "pid1", "os"] diff --git a/ci/common_function b/ci/common_function index 13d2b4ffd17e647e203ece3e8aa7309361f60210..1d294e18d70be6817fcef182b71176c264c06325 100644 --- a/ci/common_function +++ b/ci/common_function @@ -15,7 +15,7 @@ function test_fasturl() for url in "${urls[@]}"; do # Send an HTTP request to get crate information and measure the execution time start_time=$(date +%s%N) - response=$(curl -s -o /dev/null --connect-timeout 10 -w "%{time_total}" "$url" > /dev/null 2>&1) + response=$(curl -s -o /dev/null --connect-timeout 3 -w "%{time_total}" "$url" > /dev/null 2>&1) if [ $? -ne 0 ]; then continue fi diff --git a/core/coms/mount/Cargo.toml b/core/coms/mount/Cargo.toml index a57e0119c43013dcccd32bdb956ecad8300f8242..037966ff731ecd5512a4925333ed08c89793827e 100755 --- a/core/coms/mount/Cargo.toml +++ b/core/coms/mount/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mount" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/coms/service/Cargo.toml b/core/coms/service/Cargo.toml index 936059103f1d0128a0a5b3ea053d047781a8be9f..f60b58c42c4fd24ae51b7e2714a7438473c6e91d 100755 --- a/core/coms/service/Cargo.toml +++ b/core/coms/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "service" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/coms/socket/Cargo.toml b/core/coms/socket/Cargo.toml index c24842057cddf9c0cfd066ebd11570a68e0b466c..6ac97a6780ddb767648d38372fdc3d66914a4482 100755 --- a/core/coms/socket/Cargo.toml +++ b/core/coms/socket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "socket" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/coms/target/Cargo.toml b/core/coms/target/Cargo.toml index dec00a561ad9391220b3203a0d26b8b408e70aef..01c320a8d3c081fa75fe88315f287f268f951208 100755 --- a/core/coms/target/Cargo.toml +++ b/core/coms/target/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "target" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/libcore/Cargo.toml b/core/libcore/Cargo.toml index fa6a01a8dd46597eb41f28b8f44cfbde06549a50..d063e0f83297c8637e0762f6a045a737ee2ed272 100755 --- a/core/libcore/Cargo.toml +++ b/core/libcore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/sctl/Cargo.toml b/core/sctl/Cargo.toml index a789d2ab7ed86291986838b08dad5b069e2f3582..5564b478ad0462e9e902b322f613a8bd715b63aa 100755 --- a/core/sctl/Cargo.toml +++ b/core/sctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sctl" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/core/sysmaster/Cargo.toml b/core/sysmaster/Cargo.toml index f2677627c449c0ff415d746d58687ee9eab19b78..a01c0496f2e34e4e75e150d4585b0b05720a0241 100755 --- a/core/sysmaster/Cargo.toml +++ b/core/sysmaster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysmaster" -version = "0.5.0" +version = "0.5.1" edition = "2021" [dependencies] diff --git a/exts/devmaster/Cargo.toml b/exts/devmaster/Cargo.toml index b3d09ae912b34bf9902e4056fe929e10b48add1f..edd73ca277f97dda805e06f428e2bb5421350492 100644 --- a/exts/devmaster/Cargo.toml +++ b/exts/devmaster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devmaster" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/fstab/Cargo.toml b/exts/fstab/Cargo.toml index 34d40f56ed98f5f69104143829321a30c6fefa62..cf8c0bb0fafc48f900eb97b8426dde87fff7b398 100644 --- a/exts/fstab/Cargo.toml +++ b/exts/fstab/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fstab" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/getty-generator/Cargo.toml b/exts/getty-generator/Cargo.toml index 1f93c2652f583252efa29f6504a036eed12b1f9f..01ebf4a388661128774a9c35f2286bc643d5ecc3 100644 --- a/exts/getty-generator/Cargo.toml +++ b/exts/getty-generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getty-generator" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/hostname_setup/Cargo.toml b/exts/hostname_setup/Cargo.toml index 46cd4575494afe4a563555da6e47aa116ee9644b..9262087ae6974709171d21c8b9c4c7f6ae5f0d3c 100644 --- a/exts/hostname_setup/Cargo.toml +++ b/exts/hostname_setup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hostname_setup" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/hwdb/Cargo.toml b/exts/hwdb/Cargo.toml index 683c6e0827201c2cdc223dda5deb57bebbe8b789..698a2b2a153f19237f0808d878910ed7f4f4e722 100644 --- a/exts/hwdb/Cargo.toml +++ b/exts/hwdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysmaster-hwdb" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/random_seed/Cargo.toml b/exts/random_seed/Cargo.toml index 0efee532cb0a417de97b21f05a233b03a3c43776..a92d28e758c24c0429a8ca32c32a385750c6a0da 100644 --- a/exts/random_seed/Cargo.toml +++ b/exts/random_seed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "random_seed" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/rc-local-generator/Cargo.toml b/exts/rc-local-generator/Cargo.toml index 946143ad75c0b9a82392fa86dcfb3970fafe395b..ac224b088c4628aadcbc0cf43abf5512fcaed9fd 100644 --- a/exts/rc-local-generator/Cargo.toml +++ b/exts/rc-local-generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rc-local-generator" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/switch_root/Cargo.toml b/exts/switch_root/Cargo.toml index f6a3de96e8827b6b947699bbfdb3edb3219f90f7..a520eadc06c0715cd40af58c1b88a24e71f690a7 100644 --- a/exts/switch_root/Cargo.toml +++ b/exts/switch_root/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "switch_root" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/exts/sysmonitor/Cargo.toml b/exts/sysmonitor/Cargo.toml index ece32b74bac7d5abe83fe7a0deba05639d7c7819..8b6257783994488e5305e0c7d370fdd57246dd5c 100644 --- a/exts/sysmonitor/Cargo.toml +++ b/exts/sysmonitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sysmonitor" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/basic/Cargo.toml b/libs/basic/Cargo.toml index c44c99a0c1cd5804d020fe6ea6a50942ad8594d1..e18db5c79cc4c89d24cd2e8581ef1c15c6f1a5f9 100644 --- a/libs/basic/Cargo.toml +++ b/libs/basic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "basic" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -62,7 +62,7 @@ full = [ "unit_name", "strbuf", "argv", - "exec_util" + "exec_util", ] capability = [] @@ -110,4 +110,4 @@ uuid = ["bitflags"] murmurhash2 = [] strbuf = [] argv = [] -exec_util= [] +exec_util = [] diff --git a/libs/blkid_rs/Cargo.toml b/libs/blkid_rs/Cargo.toml index 7b20d1abbf7a2b6eeff80974f6deee384013293a..bf1a9435e455c5a7e5f2929cedda688fffa8ac35 100644 --- a/libs/blkid_rs/Cargo.toml +++ b/libs/blkid_rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blkid_rs" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/cgroup/Cargo.toml b/libs/cgroup/Cargo.toml index a078b9f4c06e7ae373795b39d015bba3350f9f9d..4f2de2b29f249262eb55aa06a34776b7d1af5593 100644 --- a/libs/cgroup/Cargo.toml +++ b/libs/cgroup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cgroup" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/cmdproto/Cargo.toml b/libs/cmdproto/Cargo.toml index 385e76deef6a1d74dd00e58a7004be3fa518d344..ddc325d973aed61681de94fbb618c832ee40e9b0 100644 --- a/libs/cmdproto/Cargo.toml +++ b/libs/cmdproto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmdproto" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/constants/Cargo.toml b/libs/constants/Cargo.toml index 972430c00272b6dbe4f807ae6cf1a20c8a7e7fe6..7fa427c0a8f9dcdfeaf4c4e6b88f785fdadbbe44 100644 --- a/libs/constants/Cargo.toml +++ b/libs/constants/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "constants" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/device/Cargo.toml b/libs/device/Cargo.toml index 8bbea9ba18ede41b6b66551499e79418de880c65..6af6a40484251437afe1616bc2e766aa860a40e0 100644 --- a/libs/device/Cargo.toml +++ b/libs/device/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/event/Cargo.toml b/libs/event/Cargo.toml index 3b5605f2716b6c6b34cfa3a19e8a81472ef4a239..2609fbdce4f59b2ea26807be91f14c0e3edf8ca6 100644 --- a/libs/event/Cargo.toml +++ b/libs/event/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "event" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -9,7 +9,10 @@ edition = "2021" constants = { path = "../constants" } libc = { version = "0.2", default-features = false } -nix = { version = "0.24", default-features = false, features = ["ucontext", "inotify"] } +nix = { version = "0.24", default-features = false, features = [ + "ucontext", + "inotify", +] } snafu = { version = "0.7", default-features = false, features = ["std"] } [dev-dependencies.libtests] diff --git a/libs/hwdb/Cargo.toml b/libs/hwdb/Cargo.toml index eeca8e26d58d94f0c6a38b351bfb490943bffd32..de288fdacab425580cd6e31d1a07ecf39ef771f2 100644 --- a/libs/hwdb/Cargo.toml +++ b/libs/hwdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hwdb" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/input_event_codes_rs/Cargo.toml b/libs/input_event_codes_rs/Cargo.toml index d4954607faa4721da37d0608e1dc4cc8a0dae157..6195275be4bb023448d0be1ccb221d2e70f551a1 100644 --- a/libs/input_event_codes_rs/Cargo.toml +++ b/libs/input_event_codes_rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "input_event_codes_rs" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/kmod_rs/Cargo.toml b/libs/kmod_rs/Cargo.toml index 4a45843bcc1a09312271ba530a635ebe2a11f35e..b103c716036892fb791d12c17fa4c9b03620d906 100644 --- a/libs/kmod_rs/Cargo.toml +++ b/libs/kmod_rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kmod_rs" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/libtests/Cargo.toml b/libs/libtests/Cargo.toml index b5cadcd80bcf06f42b672e71144cf613be4d4f96..2c9cec253ff74257d9f8dad63f39b6d0df15b808 100644 --- a/libs/libtests/Cargo.toml +++ b/libs/libtests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libtests" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/log/Cargo.toml b/libs/log/Cargo.toml index 16f090fadd20e5328a824d8c4318e974a85de3c4..3f33db92d6b735a761be3878ef3f74b9baa467fc 100644 --- a/libs/log/Cargo.toml +++ b/libs/log/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "log" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/macros/Cargo.toml b/libs/macros/Cargo.toml index fc15fa46e756cf5c2979c9b1fe86b53b3bf79b51..fb5aeed08a6d2704a002415c9284a2b596889f24 100644 --- a/libs/macros/Cargo.toml +++ b/libs/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/scsi_generic_rs/Cargo.toml b/libs/scsi_generic_rs/Cargo.toml index ceba9f9dc67c0e9db4d9de2504229a089c00547b..be6b91568bbaee7bc9dd555b7a411f23d5ec1d15 100644 --- a/libs/scsi_generic_rs/Cargo.toml +++ b/libs/scsi_generic_rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scsi_generic_rs" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/selinux/Cargo.toml b/libs/selinux/Cargo.toml index 6f313a1b498d478494cd32d946284b336819b6d4..7d79b1dfced6a7a65099853c03cddde382a173d9 100644 --- a/libs/selinux/Cargo.toml +++ b/libs/selinux/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selinux" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libs/watchdog/Cargo.toml b/libs/watchdog/Cargo.toml index b5baa52c50cd2d385095eb29402fd0bbb3396cd9..8edb87de1859e973ff346bd365357cb052aa102c 100644 --- a/libs/watchdog/Cargo.toml +++ b/libs/watchdog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchdog" -version = "0.5.0" +version = "0.5.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html