Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows #371

Merged
merged 4 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ jobs:
- os: ubuntu-20.04
dist-args: --artifacts=local --target=x86_64-unknown-linux-gnu
install-dist: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.2.0/cargo-dist-installer.sh | sh
- os: windows-2019
dist-args: --artifacts=local --target=x86_64-pc-windows-msvc
install-dist: irm https://github.com/axodotdev/cargo-dist/releases/download/v0.2.0/cargo-dist-installer.ps1 | iex

runs-on: ${{ matrix.os }}
env:
Expand All @@ -82,7 +79,6 @@ jobs:
- name: Build the frontend
run: moon run frontend:build
- name: Run cargo-dist
continue-on-error: true
run: |
# Actually do builds and make zips and whatnot
cargo dist build --tag=${{ github.ref_name }} --output-format=json ${{ matrix.dist-args }} > dist-manifest.json
Expand Down
62 changes: 41 additions & 21 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ installers = ["shell", "powershell"]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]

Expand Down
12 changes: 6 additions & 6 deletions apps/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ryot"
version = "2.19.1"
version = "2.19.2"
edition = "2021"
repository = "https://github.com/IgnisDa/ryot"
license = "GPL-V3"
Expand All @@ -14,13 +14,13 @@ apalis = { version = "0.4.4", features = [
"sqlite",
] }
argon2 = "0.5.2"
async-graphql = { version = "6.0.6", features = [
async-graphql = { version = "6.0.7", features = [
"chrono",
"decimal",
"log",
"uuid",
] }
async-graphql-axum = "6.0.6"
async-graphql-axum = "6.0.7"
async-trait = "0.1.73"
aws-sdk-s3 = "0.31.2"
axum = { version = "0.6.20", features = ["macros", "multipart"] }
Expand All @@ -32,7 +32,7 @@ convert_case = "0.6.0"
const-str = "0.5.6"
cookie = "0.17.0"
csv = "1.2.2"
derive_more = { version = "0.99.17", features = [
derive_more = { version = "1.0.0-beta.3", features = [
"add",
"sum",
"add_assign",
Expand Down Expand Up @@ -62,7 +62,7 @@ rust-embed = "8.0.0"
rust_decimal = "1.32.0"
rust_decimal_macros = "1.32.0"
rust_iso3166 = "0.1.10"
schematic = { version = "0.11.6", features = [
schematic = { version = "0.11.8", features = [
"json",
"schema",
"toml",
Expand All @@ -83,7 +83,7 @@ sea-orm = { version = "0.12.3", features = [
"with-rust_decimal",
] }
sea-orm-migration = "0.12.3"
sea-query = "0.30.1"
sea-query = "0.30.2"
semver = "1.0.19"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
Expand Down
4 changes: 2 additions & 2 deletions apps/browser-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"plasmo": "0.83.0"
},
"devDependencies": {
"@types/chrome": "0.0.245",
"@types/node": "20.6.0"
"@types/chrome": "0.0.246",
"@types/node": "20.7.0"
}
}
18 changes: 9 additions & 9 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
"@mantine/form": "6.0.20",
"@mantine/hooks": "6.0.20",
"@mantine/modals": "6.0.20",
"@mantine/next": "6.0.20",
"@mantine/next": "6.0.21",
"@mantine/notifications": "6.0.20",
"@ryot/generated": "workspace:*",
"@ryot/graphql": "workspace:*",
"@ryot/ts-utils": "workspace:*",
"@tabler/icons-react": "2.34.0",
"@tanstack/react-query": "4.35.0",
"dayjs": "1.11.9",
"embla-carousel-react": "8.0.0-rc12",
"@tabler/icons-react": "2.35.0",
"@tanstack/react-query": "4.35.3",
"dayjs": "1.11.10",
"embla-carousel-react": "8.0.0-rc14",
"human-format": "1.2.0",
"humanize-duration-ts": "2.1.1",
"immer": "10.0.2",
"jotai": "2.4.2",
"luxon": "3.4.3",
"next": "13.4.19",
"next": "13.5.3",
"next-pwa": "5.6.0",
"next-seo": "6.1.0",
"react": "18.2.0",
Expand All @@ -41,8 +41,8 @@
},
"devDependencies": {
"@types/luxon": "3.3.2",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7"
"@types/node": "20.7.0",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.8"
}
}
2 changes: 1 addition & 1 deletion libs/generated/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@ryot/generated",
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"graphql": "16.8.0"
"graphql": "16.8.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/ts-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"lodash": "4.17.21"
},
"devDependencies": {
"@types/lodash": "4.14.198"
"@types/lodash": "4.14.199"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"node": "20.5.1"
},
"devDependencies": {
"@biomejs/biome": "1.1.2",
"@biomejs/biome": "1.2.2",
"tsconfig-moon": "1.3.0",
"typescript": "5.2.2"
}
Expand Down
Loading