aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--gitolfs3-authenticate/Cargo.toml1
-rw-r--r--gitolfs3-common/Cargo.toml1
-rw-r--r--gitolfs3-server/Cargo.toml1
-rw-r--r--gitolfs3-shell/Cargo.toml1
5 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index fd72cb2..9bb36c8 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
1Gitolfs3: a very simple Git LFS server 1Gitolfs3: a very simple Git LFS server
2======== 2======================================
3
4[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
3 5
4Gitolfs3 has a singular purpose: provide me with a personal Git LFS server that 6Gitolfs3 has a singular purpose: provide me with a personal Git LFS server that
5I can run on my VPS, that stores objects in S3. It seems to be doing an okay 7I can run on my VPS, that stores objects in S3. It seems to be doing an okay
diff --git a/gitolfs3-authenticate/Cargo.toml b/gitolfs3-authenticate/Cargo.toml
index 5725abc..ff2b702 100644
--- a/gitolfs3-authenticate/Cargo.toml
+++ b/gitolfs3-authenticate/Cargo.toml
@@ -2,6 +2,7 @@
2name = "gitolfs3-authenticate" 2name = "gitolfs3-authenticate"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT"
5 6
6[dependencies] 7[dependencies]
7anyhow = "1.0" 8anyhow = "1.0"
diff --git a/gitolfs3-common/Cargo.toml b/gitolfs3-common/Cargo.toml
index 5724732..e0d3c3b 100644
--- a/gitolfs3-common/Cargo.toml
+++ b/gitolfs3-common/Cargo.toml
@@ -2,6 +2,7 @@
2name = "gitolfs3-common" 2name = "gitolfs3-common"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT"
5 6
6[dependencies] 7[dependencies]
7chrono = "0.4" 8chrono = "0.4"
diff --git a/gitolfs3-server/Cargo.toml b/gitolfs3-server/Cargo.toml
index 04edeea..efea78b 100644
--- a/gitolfs3-server/Cargo.toml
+++ b/gitolfs3-server/Cargo.toml
@@ -2,6 +2,7 @@
2name = "gitolfs3-server" 2name = "gitolfs3-server"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT"
5 6
6[dependencies] 7[dependencies]
7aws-config = { version = "1.1.2" } 8aws-config = { version = "1.1.2" }
diff --git a/gitolfs3-shell/Cargo.toml b/gitolfs3-shell/Cargo.toml
index c0b5d3a..dd348ce 100644
--- a/gitolfs3-shell/Cargo.toml
+++ b/gitolfs3-shell/Cargo.toml
@@ -2,5 +2,6 @@
2name = "gitolfs3-shell" 2name = "gitolfs3-shell"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT"
5 6
6[dependencies] 7[dependencies]