Skip to content

Commit

Permalink
bump to rust v1.73.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewmeyer committed Oct 7, 2023
1 parent abea902 commit cb6cb4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ edition = "2021"

[dependencies]
anyhow = "1.0.75"
async-stripe = { version = "0.23.0", default-features = false, features = ["runtime-tokio-hyper-rustls", "billing", "connect", "webhook-events", "uuid", "stream", "checkout"] }
async-stripe = { version = "0.25.2", default-features = false, features = ["runtime-tokio-hyper-rustls", "billing", "connect", "webhook-events", "uuid", "stream", "checkout"] }
axum = { version = "0.6.20", features = ["http2", "headers"] }
chrono = { version = "0.4.31", features = ["serde"] }
dashmap = "5.5.3"
dotenvy = "0.15.7"
figment = { version = "0.10.10", features = ["env"] }
figment = { version = "0.10.11", features = ["env"] }
jsonwebtoken = { version = "8.3.0", default-features = false }
owasp-headers = "0.1.2"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "trust-dns"] }
reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls", "trust-dns"] }
sea-orm = { version = "0.12.3", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "with-json", "with-chrono", "with-uuid" ] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
serde_with = "3.3.0"
thiserror = "1.0.48"
thiserror = "1.0.49"
tokio = { version = "1.32.0", features = ["full"] }
tower = "0.4.13"
tower-default-headers = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.72.0-alpine AS base
FROM rust:1.73.0-alpine AS base
RUN apk add musl-dev musl-utils
RUN cargo install cargo-chef

Expand Down
6 changes: 3 additions & 3 deletions migrations/20221213021516_create_core.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ CREATE TABLE subscriptions(
CREATE UNIQUE INDEX subscriptions_stripe_subscription_id_idx ON subscriptions(stripe_subscription_id);

INSERT INTO accounts(id, name, status) VALUES
('00758f79-9c7f-4a50-b671-df3b433513c0', 'Jake''s Lawn Care', 1);
('018ae25a-2c34-738b-b75e-c72e8e1f13a3', 'Jake''s Lawn Care', 1);

INSERT INTO users(id, provider_id, stripe_customer_id) VALUES
('98e8c838-8be5-46e1-af88-2dd822ee4a1b', 'auth0|640697bfd9f505ef159beb14', 'cus_GkkgWE9SjOw326');
('018ae25a-725e-7a81-9b80-8292272c29b8', 'auth0|640697bfd9f505ef159beb14', 'cus_GkkgWE9SjOw326');

INSERT INTO users_accounts(user_id, account_id) VALUES
('98e8c838-8be5-46e1-af88-2dd822ee4a1b', '00758f79-9c7f-4a50-b671-df3b433513c0');
('018ae25a-725e-7a81-9b80-8292272c29b8', '018ae25a-2c34-738b-b75e-c72e8e1f13a3');

0 comments on commit cb6cb4c

Please sign in to comment.