From ea7e100f613b4f3a39caec7bf06848f8abe2cdab Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Wed, 4 Oct 2023 08:17:37 -0400 Subject: [PATCH 1/2] Clean deps --- Project.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Project.toml b/Project.toml index b73f812..89d9122 100644 --- a/Project.toml +++ b/Project.toml @@ -5,8 +5,6 @@ version = "0.2" [deps] DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe" -Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" -Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" @@ -15,5 +13,4 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" [compat] julia = "1.9" DataDeps = "0.7.10" -Documenter = "1" HTTP = "1.4.0" From 005a020232f4173494baf5bd80bbfa2b8f740792 Mon Sep 17 00:00:00 2001 From: Jeff Fessler Date: Wed, 4 Oct 2023 08:28:08 -0400 Subject: [PATCH 2/2] Restore Dates --- Project.toml | 1 + src/GoogleDrive.jl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 89d9122..67a1827 100644 --- a/Project.toml +++ b/Project.toml @@ -5,6 +5,7 @@ version = "0.2" [deps] DataDeps = "124859b0-ceae-595e-8997-d05f6a7a8dfe" +Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" diff --git a/src/GoogleDrive.jl b/src/GoogleDrive.jl index 87627d4..ecba3eb 100644 --- a/src/GoogleDrive.jl +++ b/src/GoogleDrive.jl @@ -1,7 +1,7 @@ module GoogleDrive using DataDeps -using Dates +using Dates: now, Millisecond using Downloads: download using Random: randstring using HTTP