From 9857f26bdd4e9e87b13a9755b1e00569e9459238 Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Fri, 8 Mar 2019 19:59:59 +0100 Subject: Download folder as a tar working --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index f98e802..d008bd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,3 +37,7 @@ chrono = "0.4.6" chrono-humanize = "0.0.11" maud = { version = "0.20.0", features = ["actix-web"] } serde = { version = "1.0.89", features = ["derive"] } +tar = "0.4" +tempfile = "3.0.7" +bytes = "0.4.12" +futures = "0.1.25" \ No newline at end of file -- cgit v1.2.3 From e7c269b12ec8168671e61787227d0fecc2756590 Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Fri, 8 Mar 2019 20:25:02 +0100 Subject: Working example of tar.gz --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index d008bd1..5f2fbcd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,4 +40,5 @@ serde = { version = "1.0.89", features = ["derive"] } tar = "0.4" tempfile = "3.0.7" bytes = "0.4.12" -futures = "0.1.25" \ No newline at end of file +futures = "0.1.25" +libflate = "0.1.20" \ No newline at end of file -- cgit v1.2.3 From aeb51dcf43665741a3438360151a4424e9b243e0 Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Tue, 12 Mar 2019 00:25:56 +0100 Subject: Started to add helpful messages for errors which could occur during archiving --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 5f2fbcd..ad5a144 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,4 +41,5 @@ tar = "0.4" tempfile = "3.0.7" bytes = "0.4.12" futures = "0.1.25" -libflate = "0.1.20" \ No newline at end of file +libflate = "0.1.20" +failure = "0.1.5" \ No newline at end of file -- cgit v1.2.3 From 15915c428181ed739c7f349a5322127c1aa9be4d Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Wed, 13 Mar 2019 18:12:58 +0100 Subject: Removed tempfile from dependencies --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 3851aee..3ec73f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,6 @@ chrono-humanize = "0.0.11" maud = { version = "0.20.0", features = ["actix-web"] } serde = { version = "1.0.89", features = ["derive"] } tar = "0.4" -tempfile = "3.0.7" bytes = "0.4.12" futures = "0.1.25" libflate = "0.1.20" -- cgit v1.2.3 From 3c3a4ebf62846a819d4114a6b79b3ea225bde6ec Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Wed, 13 Mar 2019 18:18:30 +0100 Subject: upgraded to libflate 0.1.21 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 3ec73f9..922e1ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,5 +40,5 @@ serde = { version = "1.0.89", features = ["derive"] } tar = "0.4" bytes = "0.4.12" futures = "0.1.25" -libflate = "0.1.20" +libflate = "0.1.21" failure = "0.1.5" \ No newline at end of file -- cgit v1.2.3 From 17ef61a126e81c9ecfd1ebdd89537e854a06cae6 Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Wed, 13 Mar 2019 19:30:54 +0100 Subject: Switched to standard Rust logging system --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 922e1ca..e9cce56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,4 +41,5 @@ tar = "0.4" bytes = "0.4.12" futures = "0.1.25" libflate = "0.1.21" -failure = "0.1.5" \ No newline at end of file +failure = "0.1.5" +log = "0.4.6" \ No newline at end of file -- cgit v1.2.3 From 20283096380f86595c959de8d5f045437e84c964 Mon Sep 17 00:00:00 2001 From: boasting-squirrel Date: Thu, 14 Mar 2019 20:30:06 +0100 Subject: Switched to tar-rs 0.4.22 and propagate no-symlink argument to tar generation --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index e9cce56..6f4aa16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ chrono = "0.4.6" chrono-humanize = "0.0.11" maud = { version = "0.20.0", features = ["actix-web"] } serde = { version = "1.0.89", features = ["derive"] } -tar = "0.4" +tar = "0.4.22" bytes = "0.4.12" futures = "0.1.25" libflate = "0.1.21" -- cgit v1.2.3