rust/rhg/Cargo.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 06 Mar 2023 12:00:25 +0100
branchstable
changeset 50297 3f31b8526d66
parent 50217 596a6b9b0570
child 50691 d39ac3468ad4
permissions -rw-r--r--
rust: upgrade `rayon` dependency This includes a potential soundness fix as well as some improvements to performance which should be helpful.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
45001
cf04f62d1579 rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     1
[package]
cf04f62d1579 rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     2
name = "rhg"
cf04f62d1579 rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     3
version = "0.1.0"
45999
fada33872b5b rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents: 45536
diff changeset
     4
authors = [
fada33872b5b rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents: 45536
diff changeset
     5
    "Antoine Cezar <antoine.cezar@octobus.net>",
fada33872b5b rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents: 45536
diff changeset
     6
    "Raphaël Gomès <raphael.gomes@octobus.net>",
fada33872b5b rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents: 45536
diff changeset
     7
]
49748
1b6be761c23d rust: move all crates in the main workspace to edition 2021
Raphaël Gomès <rgomes@octobus.net>
parents: 49522
diff changeset
     8
edition = "2021"
45001
cf04f62d1579 rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
     9
cf04f62d1579 rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
diff changeset
    10
[dependencies]
49043
8848c3453661 rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 48743
diff changeset
    11
atty = "0.2.14"
45050
513b3ef277a3 rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents: 45001
diff changeset
    12
hg-core = { path = "../hg-core"}
49759
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    13
chrono = "0.4.23"
49758
37bc3edef76f rhg: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents: 49748
diff changeset
    14
clap = { version = "4.0.24", features = ["cargo"] }
49043
8848c3453661 rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 48743
diff changeset
    15
derive_more = "0.99.17"
49759
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    16
home = "0.5.4"
46742
6cd9f53aaed8 rhg: Fall back to Python on --repository with an URL
Simon Sapin <simon.sapin@octobus.net>
parents: 46640
diff changeset
    17
lazy_static = "1.4.0"
49759
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    18
log = "0.4.17"
49986
c15b415d1bff rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents: 49759
diff changeset
    19
logging_timer = "1.1.0"
49759
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    20
regex = "1.7.0"
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    21
env_logger = "0.9.3"
48531
d3ec82016104 rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents: 47410
diff changeset
    22
format-bytes = "0.3.0"
46640
755c31a1caf9 rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents: 46551
diff changeset
    23
users = "0.11.0"
49759
ab6151e1f468 rhg: upgrade the remainder of the dependencies
Raphaël Gomès <rgomes@octobus.net>
parents: 49758
diff changeset
    24
which = "4.3.0"
50297
3f31b8526d66 rust: upgrade `rayon` dependency
Raphaël Gomès <rgomes@octobus.net>
parents: 50217
diff changeset
    25
rayon = "1.7.0"