Skip to content

Commit

Permalink
version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Oct 18, 2024
1 parent b777eb7 commit 6f4efcb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diary_app_rust"
version = "0.10.11"
version = "0.10.12"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -20,9 +20,9 @@ diary_app_lib = {path="diary_app_lib"}
diary_app_api = {path="diary_app_api"}
diary_app_bot = {path="diary_app_bot"}
dirs = "5.0"
env_logger = {version="0.11", features=["color", "humantime", "regex"], default_features = false}
env_logger = {version="0.11", features=["color", "humantime", "regex"], default-features = false}
time = {version="0.3", features=["serde-human-readable", "macros", "formatting"]}
tokio = {version="1.38", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}

[workspace]
members = [
Expand Down
12 changes: 6 additions & 6 deletions diary_app_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diary_app_api"
version = "0.10.11"
version = "0.10.12"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -15,9 +15,9 @@ diary_app_lib = {path = "../diary_app_lib"}
dioxus = "0.5"
dioxus-core = "0.5"
dioxus-ssr = "0.5"
derive_more = "0.99"
derive_more = {version="1.0", features = ["full"]}
futures = "0.3"
handlebars = "5.1"
handlebars = "6.1"
itertools = "0.13"
log = "0.4"
maplit = "1.0"
Expand All @@ -33,11 +33,11 @@ stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", featur
thiserror = "1.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.38", features=["time"]}
tokio = {version="1.40", features=["time"]}
uuid = "1.0"

[dev-dependencies]
auth_server_http = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.11.15"}
auth_server_lib = { git = "https://github.com/ddboline/auth_server_rust.git", tag="0.11.15"}
env_logger = {version="0.11", features=["color", "humantime", "regex"], default_features = false}
reqwest = {version="0.12", features=["cookies", "json", "rustls-tls", "stream"]}
env_logger = {version="0.11", features=["color", "humantime", "regex"], default-features = false}
reqwest = {version="0.12", features=["cookies", "json", "rustls-tls", "stream"], default-features = false}
4 changes: 2 additions & 2 deletions diary_app_api/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ async fn run_app(db: DiaryAppActor, port: u32) -> Result<(), Error> {

let (spec, api_path) = openapi::spec()
.info(Info {
title: "Frontend for AWS".into(),
description: "Web Frontend for AWS Services".into(),
title: "Frontend for Diary".into(),
description: "Web Frontend for Diary Service".into(),
version: env!("CARGO_PKG_VERSION").into(),
..Info::default()
})
Expand Down
6 changes: 3 additions & 3 deletions diary_app_bot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diary_app_bot"
version = "0.10.11"
version = "0.10.12"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -18,5 +18,5 @@ once_cell = "1.0"
parking_lot = "0.12"
stack-string = { git = "https://github.com/ddboline/stack-string-rs.git", features=["postgres_types"], tag="0.9.3" }
thiserror = "1.0"
tokio = {version="1.38", features=["rt", "macros", "rt-multi-thread"]}
telegram-bot = {git = "https://github.com/ddboline/telegram-bot.git", tag="0.9.0-4", default_features=false}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
telegram-bot = {git = "https://github.com/ddboline/telegram-bot.git", tag="0.9.0-4", default-features=false}
8 changes: 4 additions & 4 deletions diary_app_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diary_app_lib"
version = "0.10.11"
version = "0.10.12"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand All @@ -15,7 +15,7 @@ crossbeam-utils = "0.8"
deadqueue = "0.2"
deadpool = { version = "0.12", features=["serde", "rt_tokio_1"] }
deadpool-postgres = { version = "0.14", features=["serde"] }
derive_more = "0.99"
derive_more = {version="1.0", features = ["full"]}
difference = "2.0"
dirs = "5.0"
dotenv = "0.15"
Expand All @@ -30,7 +30,7 @@ postgres_query = {git = "https://github.com/ddboline/rust-postgres-query", tag =
rand = "0.8"
rayon = "1.5"
refinery = {version="0.8", features=["tokio-postgres"]}
regex = {version = "1.4", default_features = false}
regex = {version = "1.4", default-features = false}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
Expand All @@ -40,7 +40,7 @@ stdout-channel = "0.6"
thiserror = "1.0"
time = {version="0.3", features=["serde-human-readable", "macros", "formatting"]}
time-tz = {version="2.0", features=["system"]}
tokio = {version="1.38", features=["rt", "macros", "rt-multi-thread"]}
tokio = {version="1.40", features=["rt", "macros", "rt-multi-thread"]}
tokio-postgres = {version = "0.7", features = ["with-time-0_3", "with-uuid-1", "with-serde_json-1"]}
url = "2.3"
uuid = "1.0"
Expand Down
2 changes: 2 additions & 0 deletions scripts/bootstrap_db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ sudo -u postgres createuser -E -e $USER
sudo -u postgres psql -c "CREATE ROLE $USER PASSWORD '$PASSWORD' NOSUPERUSER NOCREATEDB NOCREATEROLE INHERIT LOGIN;"
sudo -u postgres psql -c "ALTER ROLE $USER PASSWORD '$PASSWORD' NOSUPERUSER NOCREATEDB NOCREATEROLE INHERIT LOGIN;"
sudo -u postgres createdb $DB
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE $DB TO $USER;"
sudo -u postgres psql $DB -c "GRANT ALL ON SCHEMA public TO $USER;"

mkdir -p ${HOME}/.config/diary_app_rust
cat > ${HOME}/.config/diary_app_rust/config.env <<EOL
Expand Down

0 comments on commit 6f4efcb

Please sign in to comment.