summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-12-11 16:58:21 -0500
committerDan Davison <dandavison7@gmail.com>2021-12-11 16:58:21 -0500
commit8dfd22ba8ac76edb1b1783ce434ba98baf868a89 (patch)
treedba6790fd0018c53e10517fb9f9260282c822eb8
parent69c7aaa28fdda955cf430134170e3a533970cc0f (diff)
Fix specification of git revision in Cargo.toml dependency
Ref #845
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4b8b476a..85139a3a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1054,7 +1054,7 @@ dependencies = [
[[package]]
name = "sysinfo"
version = "0.21.2"
-source = "git+https://github.com/GuillaumeGomez/sysinfo#d647acfbf216848a8237e1f9251b2c48860a547f"
+source = "git+https://github.com/GuillaumeGomez/sysinfo?rev=d647acfbf216848a8237e1f9251b2c48860a547f#d647acfbf216848a8237e1f9251b2c48860a547f"
dependencies = [
"cfg-if 1.0.0",
"core-foundation-sys",
diff --git a/Cargo.toml b/Cargo.toml
index 355a9408..de5e9e38 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -54,7 +54,7 @@ features = ["parsing", "assets", "yaml-load", "dump-load", "regex-onig"]
[dependencies.sysinfo]
git = "https://github.com/GuillaumeGomez/sysinfo"
-commit = "d647acfbf216848a8237e1f9251b2c48860a547f"
+rev = "d647acfbf216848a8237e1f9251b2c48860a547f"
# no default features to disable the use of threads
default-features = false
features = []