Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyfallWasTaken committed Aug 26, 2024
1 parent fbab609 commit 7b56877
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/vortex-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vortex-server"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[dependencies]
Expand Down
5 changes: 4 additions & 1 deletion crates/vortex-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ async fn main() -> Result<()> {
.allow_origin(Any);

let router = Router::new()
.route("/", get(|| async { "OK :)" }))
.route(
"/",
get(|| async { format!("vortex-server v{}", env!("CARGO_PKG_VERSION")) }),
)
.route("/emails/:email", get(get_emails))
.layer(Extension(emails_map_smtp))
.layer(cors);
Expand Down
2 changes: 1 addition & 1 deletion crates/vortex-smtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vortex-smtp"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit 7b56877

Please sign in to comment.