Skip to content

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kgv committed Sep 1, 2023
1 parent 64f90c7 commit 75d707b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
interval: monthly

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
interval: monthly
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml → .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci
name: Rust

on:
push:
Expand All @@ -8,6 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings

jobs:
build:
Expand All @@ -18,22 +19,22 @@ jobs:
exclude:
- os: macos-latest
toolchain: nightly

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
toolchain: ${{ matrix.toolchain }}
- name: fmt
if: matrix.toolchain == 'nightly'
run: cargo fmt --all -- --check
- name: check
run: cargo check
- name: update & install
if: runner.os == 'linux'
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: build & test
run: cargo test --verbose
- name: clippy
run: cargo clippy --all
38 changes: 18 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,30 @@ repository = "https://github.com/kgv/bevy_fluent"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "gamedev", "internationalization", "localization", "plugin"]
categories = [
"games",
"game-development",
"games",
"internationalization",
"localization",
]
exclude = [".github/**/*"]

[dependencies]
anyhow = "1.0.70"
bevy = { version = "0.11.0", default-features = false, features = [
"bevy_asset",
] }
fluent = "0.16.0"
fluent-langneg = "0.13.0"
fluent_content = "0.0.5"
globset = "0.4.10"
indexmap = { version = "2.0.0", features = ["serde"] }
intl-memoizer = "0.5.1"
ron = "0.8.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_yaml = "0.9.21"
thiserror = "1.0.40"
tracing = "0.1.37"
unic-langid = { version = "0.9.1", features = ["serde"] }
uuid = { version = "1.3.1", features = ["serde", "v4", "v5"] }
anyhow = "1.0"
bevy = { version = "0.11", default-features = false, features = ["bevy_asset"] }
fluent = "0.16"
fluent-langneg = "0.13"
fluent_content = "0.0"
globset = "0.4"
indexmap = { version = "2.0", features = ["serde"] }
intl-memoizer = "0.5"
ron = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
thiserror = "1.0"
tracing = "0.1"
unic-langid = { version = "0.9", features = ["serde"] }
uuid = { version = "1.3", features = ["serde", "v4", "v5"] }

[dev-dependencies]
bevy = "0.11.0"
unic-langid = { version = "0.9.1", features = ["macros"] }
bevy = "0.11"
unic-langid = { version = "0.9", features = ["macros"] }

0 comments on commit 75d707b

Please sign in to comment.