summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2021-02-02chore(release): v0.50.0v0.50.0Matan Kushner
2021-02-01build(deps): bump shadow-rs from 0.5.23 to 0.5.24dependabot-preview[bot]
Bumps [shadow-rs](https://github.com/baoyachi/shadow-rs) from 0.5.23 to 0.5.24. - [Release notes](https://github.com/baoyachi/shadow-rs/releases) - [Commits](https://github.com/baoyachi/shadow-rs/compare/0.5.23...0.5.24) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-29chore(release): v0.49.0v0.49.0Matan Kushner
2021-01-27build(deps): bump log from 0.4.13 to 0.4.14dependabot-preview[bot]
Bumps [log](https://github.com/rust-lang/log) from 0.4.13 to 0.4.14. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.13...0.4.14) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-27build(deps): bump rand from 0.8.2 to 0.8.3dependabot-preview[bot]
Bumps [rand](https://github.com/rust-random/rand) from 0.8.2 to 0.8.3. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-26build(deps): bump serde from 1.0.122 to 1.0.123dependabot-preview[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.122 to 1.0.123. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.122...v1.0.123) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-26build(deps): bump sys-info from 0.7.0 to 0.8.0dependabot-preview[bot]
Bumps [sys-info](https://github.com/FillZpp/sys-info-rs) from 0.7.0 to 0.8.0. - [Release notes](https://github.com/FillZpp/sys-info-rs/releases) - [Changelog](https://github.com/FillZpp/sys-info-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/FillZpp/sys-info-rs/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-25build(deps): bump serde from 1.0.120 to 1.0.122dependabot-preview[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.120 to 1.0.122. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.120...v1.0.122) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-25build(deps): bump process_control from 3.0.0 to 3.0.1dependabot-preview[bot]
Bumps [process_control](https://github.com/dylni/process_control) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dylni/process_control/releases) - [Commits](https://github.com/dylni/process_control/compare/3.0.0...3.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-25build(deps): bump git2 from 0.13.16 to 0.13.17dependabot-preview[bot]
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.13.16 to 0.13.17. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.13.16...0.13.17) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-22build: Add additional build information to version and bug report (#2124)Rust大闸蟹
* fix https://github.com/starship/starship/issues * cargo fmt * upgrade shadow-rs 0.5.6 * upgrade shadow-rs * update * complet bug_report infomation * cargo fmt * upgrade shadow-rs 0.5.11 * upgrade shadow-rs 0.5.14 * fixed:https://github.com/starship/starship/pull/2124#discussion_r559076634 fixed:https://github.com/starship/starship/pull/2124#discussion_r559076918 * add long_version * upgrade shadow-rs 0.5.19; adaptate clap version() use by shadow-rs clap_version() * fix unit test error * fix test error * upgrade shadow-rs 0.5.22 * upgrade shadow-rs 0.5.23
2021-01-22build(deps): bump rust-ini from 0.16.0 to 0.16.1dependabot-preview[bot]
Bumps [rust-ini](https://github.com/zonyitoo/rust-ini) from 0.16.0 to 0.16.1. - [Release notes](https://github.com/zonyitoo/rust-ini/releases) - [Commits](https://github.com/zonyitoo/rust-ini/compare/v0.16.0...v0.16.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-22build(deps): bump git2 from 0.13.15 to 0.13.16dependabot-preview[bot]
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.13.15 to 0.13.16. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.13.15...0.13.16) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-21perf(utils): Add timeout to `utils::exec_cmd` (#2171)Thomas O'Donnell
* perf(utils): Add timeout to `utils::exec_cmd` This adds a timeout to any command executed using the `utils::exec_cmd`. The initial time limit is hard coded to 500ms but if required we can make this configurable. Have also switched the tests to be a bit more granular on which systems they are ignored. * Terminate the processes if they timeout
2021-01-20build(deps): bump serde from 1.0.119 to 1.0.120dependabot-preview[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.119 to 1.0.120. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.119...v1.0.120) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-18build(deps): bump path-slash from 0.1.3 to 0.1.4dependabot-preview[bot]
Bumps [path-slash](https://github.com/rhysd/path-slash) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/rhysd/path-slash/releases) - [Changelog](https://github.com/rhysd/path-slash/blob/master/CHANGELOG.md) - [Commits](https://github.com/rhysd/path-slash/compare/v0.1.3...v0.1.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-14build(deps): bump rand from 0.8.1 to 0.8.2dependabot-preview[bot]
Bumps [rand](https://github.com/rust-random/rand) from 0.8.1 to 0.8.2. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.1...0.8.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-13build(deps): bump tempfile from 3.1.0 to 3.2.0dependabot-preview[bot]
Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/Stebalien/tempfile/releases) - [Changelog](https://github.com/Stebalien/tempfile/blob/master/NEWS) - [Commits](https://github.com/Stebalien/tempfile/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-12build(deps): bump log from 0.4.11 to 0.4.13dependabot-preview[bot]
Bumps [log](https://github.com/rust-lang/log) from 0.4.11 to 0.4.13. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.11...0.4.13) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-12build(deps): bump serde from 1.0.118 to 1.0.119dependabot-preview[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.118 to 1.0.119. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.118...v1.0.119) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11build(deps): bump notify-rust from 4.1.1 to 4.2.2dependabot-preview[bot]
Bumps [notify-rust](https://github.com/hoodie/notify-rust) from 4.1.1 to 4.2.2. - [Release notes](https://github.com/hoodie/notify-rust/releases) - [Changelog](https://github.com/hoodie/notify-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/hoodie/notify-rust/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11build(deps): bump regex from 1.4.2 to 1.4.3dependabot-preview[bot]
Bumps [regex](https://github.com/rust-lang/regex) from 1.4.2 to 1.4.3. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.4.2...1.4.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11build(deps): bump attohttpc from 0.16.0 to 0.16.1dependabot-preview[bot]
Bumps [attohttpc](https://github.com/sbstp/attohttpc) from 0.16.0 to 0.16.1. - [Release notes](https://github.com/sbstp/attohttpc/releases) - [Commits](https://github.com/sbstp/attohttpc/compare/v0.16.0...v0.16.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-08build(deps): bump notify-rust from 4.1.0 to 4.1.1dependabot-preview[bot]
Bumps [notify-rust](https://github.com/hoodie/notify-rust) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/hoodie/notify-rust/releases) - [Changelog](https://github.com/hoodie/notify-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/hoodie/notify-rust/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-07build(deps): bump notify-rust from 4.0.0 to 4.1.0dependabot-preview[bot]
Bumps [notify-rust](https://github.com/hoodie/notify-rust) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/hoodie/notify-rust/releases) - [Changelog](https://github.com/hoodie/notify-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/hoodie/notify-rust/compare/v4.0.0...v4.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-05build(deps): bump rand from 0.8.0 to 0.8.1dependabot-preview[bot]
Bumps [rand](https://github.com/rust-random/rand) from 0.8.0 to 0.8.1. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.0...0.8.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-04build(deps): bump yaml-rust from 0.4.4 to 0.4.5dependabot-preview[bot]
Bumps [yaml-rust](https://github.com/chyh1990/yaml-rust) from 0.4.4 to 0.4.5. - [Release notes](https://github.com/chyh1990/yaml-rust/releases) - [Commits](https://github.com/chyh1990/yaml-rust/compare/0.4.4...0.4.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-02chore(release): v0.48.0v0.48.0Matan Kushner
2020-12-30build(deps): bump native-tls from 0.2.6 to 0.2.7dependabot-preview[bot]
Bumps [native-tls](https://github.com/sfackler/rust-native-tls) from 0.2.6 to 0.2.7. - [Release notes](https://github.com/sfackler/rust-native-tls/releases) - [Changelog](https://github.com/sfackler/rust-native-tls/blob/master/CHANGELOG.md) - [Commits](https://github.com/sfackler/rust-native-tls/compare/v0.2.6...v0.2.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-29build(deps): bump git2 from 0.13.14 to 0.13.15dependabot-preview[bot]
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.13.14 to 0.13.15. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.13.14...0.13.15) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-29build(deps): bump serde_json from 1.0.60 to 1.0.61dependabot-preview[bot]
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.60 to 1.0.61. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.60...v1.0.61) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-25build(deps): bump rand from 0.7.3 to 0.8.0 (#2016)dependabot-preview[bot]
2020-12-22feat(utils): Support non-exe commands on Windows (#2019)Thomas O'Donnell
Have added support to the `utils::exec_cmd` to allow it to execute commands that are not `.exe` on Windows. Have also added a timer to measure how long a command took to execute.
2020-12-22build(deps): bump git2 from 0.13.13 to 0.13.14dependabot-preview[bot]
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.13.13 to 0.13.14. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.13.13...0.13.14) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-20build(deps): bump toml from 0.5.7 to 0.5.8dependabot-preview[bot]
Bumps [toml](https://github.com/alexcrichton/toml-rs) from 0.5.7 to 0.5.8. - [Release notes](https://github.com/alexcrichton/toml-rs/releases) - [Commits](https://github.com/alexcrichton/toml-rs/compare/0.5.7...0.5.8) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-20build(deps): bump git2 from 0.13.12 to 0.13.13dependabot-preview[bot]
Bumps [git2](https://github.com/rust-lang/git2-rs) from 0.13.12 to 0.13.13. - [Release notes](https://github.com/rust-lang/git2-rs/releases) - [Commits](https://github.com/rust-lang/git2-rs/compare/0.13.12...0.13.13) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-20refactor: specify all dependencies up to the patch/x.y.z level (#2002)David Knaack
* refactor: specify all dependencies up to the patch/x.y.z level * add pest
2020-12-15build(deps): bump indexmap from 1.6.0 to 1.6.1dependabot-preview[bot]
Bumps [indexmap](https://github.com/bluss/indexmap) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/bluss/indexmap/releases) - [Commits](https://github.com/bluss/indexmap/compare/1.6.0...1.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-07build(deps): bump serde from 1.0.117 to 1.0.118dependabot-preview[bot]
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.117 to 1.0.118. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.117...v1.0.118) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-05build(deps): bump quick-xml from 0.19.0 to 0.20.0dependabot-preview[bot]
Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.19.0 to 0.20.0. - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.19.0...v0.20.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-05feat(nodejs): check node engines version in package.json (#1847)t-mangoe
* check node engines version in package.json * fix code, following review.
2020-12-03build(deps): bump serde_json from 1.0.59 to 1.0.60dependabot-preview[bot]
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.59 to 1.0.60. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.59...v1.0.60) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-30feat(rust): Support new rust-toolchain format (#1938)Dominik Nakamura
* feat(rust): Support new rust-toolchain format * Match file parsing with rustup and update link * Use cargo to deserialize the rust-toolchain file * Filter empty channel strings after extraction * Use the option value instead of rewrapping
2020-11-30build(deps): bump nix from 0.19.0 to 0.19.1dependabot-preview[bot]
Bumps [nix](https://github.com/nix-rust/nix) from 0.19.0 to 0.19.1. - [Release notes](https://github.com/nix-rust/nix/releases) - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.19.0...v0.19.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-25build(deps): bump unicode-segmentation from 1.7.0 to 1.7.1dependabot-preview[bot]
Bumps [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) from 1.7.0 to 1.7.1. - [Release notes](https://github.com/unicode-rs/unicode-segmentation/releases) - [Commits](https://github.com/unicode-rs/unicode-segmentation/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-23perf(memory_usage): replace sysinfo with sys-info (#1886)David Knaack
* perf(memory_usage): replace sysinfo with sys-info * format * simplify error handling
2020-11-16build(deps): bump unicode-segmentation from 1.6.0 to 1.7.0dependabot-preview[bot]
Bumps [unicode-segmentation](https://github.com/unicode-rs/unicode-segmentation) from 1.6.0 to 1.7.0. - [Release notes](https://github.com/unicode-rs/unicode-segmentation/releases) - [Commits](https://github.com/unicode-rs/unicode-segmentation/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-15chore(release): v0.47.0v0.47.0Thomas O'Donnell
2020-11-13build(deps): bump once_cell from 1.5.1 to 1.5.2dependabot-preview[bot]
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.5.1 to 1.5.2. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.5.1...v1.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-12build(deps): bump once_cell from 1.5.0 to 1.5.1dependabot-preview[bot]
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.5.0 to 1.5.1. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.5.0...v1.5.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>