Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
874162b
issue-auth stack/deploy
smart--petea Dec 26, 2023
7ae0f1f
issue-auth stack/deploy
smart--petea Dec 26, 2023
36a8820
issue-auth src/routes/stack/deploy.rs
smart--petea Dec 27, 2023
d38f220
issue-auth src/routes/stack/deploy.rs
smart--petea Dec 27, 2023
1852cb6
issue-auth channel
smart--petea Dec 27, 2023
3383358
issue-auth RabbitMQ logic
smart--petea Dec 27, 2023
055988c
issue-auth pg_pool
smart--petea Dec 30, 2023
ace2c26
issue-auth db_pool renamed to pg_pool
smart--petea Dec 30, 2023
1d4fc96
issue-auth helpers::MqPool
smart--petea Dec 30, 2023
c6bf4a2
issue-auth mq_manager
smart--petea Dec 30, 2023
d870fca
issue-auth mq_manager::publish_and_confirm
smart--petea Dec 30, 2023
bf8cadc
issue-auth move to deadpool
smart--petea Dec 30, 2023
67c2f59
issue_auth mq_manager.create_channel
smart--petea Dec 30, 2023
9ad15f7
issue-auth mq_manager get_connection
smart--petea Dec 30, 2023
8d7e9a0
issue-auth tracing::instrument for DcBuilder::build
smart--petea Dec 31, 2023
ea374d7
issue-auth DcBuilder build()
smart--petea Dec 31, 2023
fb7b132
issue-auth mq_manager. publish. Serialize
smart--petea Jan 6, 2024
6ddd62c
issue-auth DcBuilder stack. try from
smart--petea Jan 6, 2024
0c89366
issue-auth Option->Result for DcBuilder::build
smart--petea Jan 7, 2024
3bad20d
issue-auth StackForm::try_from
smart--petea Jan 7, 2024
27e66b9
issue-auth Networks::try_from
smart--petea Jan 7, 2024
3e01e87
issue-auth TryInto<Port>
smart--petea Jan 7, 2024
bddf56f
issue_auth stack_app
smart--petea Jan 8, 2024
b8334e4
issue-auth Volume::is_named_docker
smart--petea Jan 10, 2024
ea055cc
issue-auth forms::stack
smart--petea Jan 11, 2024
7d8e21c
issue-auth merge with dev
smart--petea Jan 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ futures-lite = "1.13.0"
clap = { version = "4.4.8", features = ["derive"] }
brotli = "3.4.0"
serde_path_to_error = "0.1.14"
deadpool-lapin = "0.11.0"

[dependencies.sqlx]
version = "0.6.3"
Expand Down
3 changes: 0 additions & 3 deletions src/forms/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
mod rating;

pub mod stack;
pub mod user;

pub use rating::*;

pub use stack::*;
Loading