Skip to content

Commit

Permalink
Merge pull request #50 from torrust/45-add-mysql-support
Browse files Browse the repository at this point in the history
45 add mysql support
  • Loading branch information
mickvandijke authored Aug 3, 2022
2 parents 4438809 + d96c56f commit a939443
Show file tree
Hide file tree
Showing 54 changed files with 1,856 additions and 728 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.env
/data.db*
/config.toml
/uploads/
169 changes: 154 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ actix-web = "4.0.0-beta.8"
actix-multipart = "0.4.0-beta.5"
actix-cors = "0.6.0-beta.2"

async-trait = "0.1.52"
async-std = "1.10.0"
futures = "0.3.5"

lazy_static = "1.4"

sqlx = { version = "0.5.7", features = [ "runtime-actix-rustls", "sqlite", "migrate", "time" ] }
sqlx = { version = "0.5.7", features = [ "runtime-actix-rustls", "sqlite", "mysql", "migrate", "time" ] }

config = "0.11"
toml = "0.5"
Expand All @@ -36,7 +35,8 @@ urlencoding = "2.1.0"

pbkdf2 = "0.9"
rand_core = { version = "0.6", features = ["std"] }
rand = "0.8.5"

chrono = "0.4.19"

sanitize-filename = "0.3.0"

Expand Down
7 changes: 0 additions & 7 deletions migrations/20210831113004_torrust_users.sql

This file was deleted.

7 changes: 0 additions & 7 deletions migrations/20210904135524_torrust_tracker_keys.sql

This file was deleted.

Loading

0 comments on commit a939443

Please sign in to comment.