-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
143 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth" | ||
version = "0.13.4" | ||
version = "0.13.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -15,11 +15,12 @@ maintenance = { status = "actively-developed" } | |
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"] | ||
|
||
[dependencies] | ||
thoth-api = { version = "=0.13.4", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "=0.13.4", path = "thoth-api-server" } | ||
thoth-app-server = { version = "=0.13.4", path = "thoth-app-server" } | ||
thoth-errors = { version = "=0.13.4", path = "thoth-errors" } | ||
thoth-export-server = { version = "=0.13.4", path = "thoth-export-server" } | ||
thoth-api = { version = "=0.13.5", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "=0.13.5", path = "thoth-api-server" } | ||
thoth-app-server = { version = "=0.13.5", path = "thoth-app-server" } | ||
thoth-errors = { version = "=0.13.5", path = "thoth-errors" } | ||
thoth-export-server = { version = "=0.13.5", path = "thoth-export-server" } | ||
clap = { version = "4.5.21", features = ["cargo", "env"] } | ||
dialoguer = { version = "0.11.0", features = ["password"] } | ||
dotenv = "0.15.0" | ||
tokio = { version = "1.43.0", features = ["rt", "rt-multi-thread", "macros"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
pub use thoth_api as api; | ||
pub use thoth_api_server::start_server as api_server; | ||
pub use thoth_app_server::start_server as app_server; | ||
pub use thoth_export_server::start_server as export_server; | ||
pub use thoth_errors as errors; | ||
pub use thoth_export_server::{start_server as export_server, ALL_SPECIFICATIONS}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api-server" | ||
version = "0.13.4" | ||
version = "0.13.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
thoth-api = { version = "=0.13.4", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } | ||
thoth-api = { version = "=0.13.5", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "=0.13.5", path = "../thoth-errors" } | ||
actix-web = "4.9" | ||
actix-cors = "0.7.0" | ||
actix-http = "3.9.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api" | ||
version = "0.13.4" | ||
version = "0.13.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" } | |
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken", "deadpool-redis"] | ||
|
||
[dependencies] | ||
thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } | ||
thoth-errors = { version = "=0.13.5", path = "../thoth-errors" } | ||
actix-web = { version = "4.9", optional = true } | ||
argon2rs = "0.2.5" | ||
isbn2 = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-app-server" | ||
version = "0.13.4" | ||
version = "0.13.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-app" | ||
version = "0.13.4" | ||
version = "0.13.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -29,8 +29,8 @@ semver = "1.0.23" | |
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
uuid = { version = "1.11.0", features = ["serde", "v4", "js"] } | ||
thoth-api = { version = "=0.13.4", path = "../thoth-api" } | ||
thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } | ||
thoth-api = { version = "=0.13.5", path = "../thoth-api" } | ||
thoth-errors = { version = "=0.13.5", path = "../thoth-errors" } | ||
|
||
[build-dependencies] | ||
dotenv = "0.15.0" |
Oops, something went wrong.