summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-10-26 09:48:31 -0400
committerDan Davison <dandavison7@gmail.com>2021-10-26 09:48:31 -0400
commitff25f2ba3be40c0ddb2354c642a7ef453ad92d45 (patch)
treeef429f4cd9bdd5bc5462f0587e9c5a7e69ef5432
parentec372683a190427c0fc7b31646849da10996a940 (diff)
Remove chrono dependency
Should have been included in #746
-rw-r--r--Cargo.lock25
-rw-r--r--Cargo.toml2
2 files changed, 0 insertions, 27 deletions
diff --git a/Cargo.lock b/Cargo.lock
index dd1d9020..afa23bb0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -145,20 +145,8 @@ version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
- "libc",
"num-integer",
"num-traits",
- "time",
- "winapi",
-]
-
-[[package]]
-name = "chrono-humanize"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2eddc119501d583fd930cb92144e605f44e0252c38dd89d9247fffa1993375cb"
-dependencies = [
- "chrono",
]
[[package]]
@@ -332,8 +320,6 @@ dependencies = [
"bitflags",
"box_drawing",
"bytelines",
- "chrono",
- "chrono-humanize",
"console",
"ctrlc",
"dirs-next",
@@ -911,17 +897,6 @@ dependencies = [
]
[[package]]
-name = "time"
-version = "0.1.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
-dependencies = [
- "libc",
- "wasi 0.10.0+wasi-snapshot-preview1",
- "winapi",
-]
-
-[[package]]
name = "tinyvec"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index c90e1f5e..ef4b5e5b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,8 +15,6 @@ name = "delta"
path = "src/main.rs"
[dependencies]
-chrono = "0.4.19"
-chrono-humanize = "0.2.1"
ansi_colours = "1.0.4"
ansi_term = "0.12.1"
atty = "0.2.14"