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

build(deps): update rfd from 0.11.4 to 0.14.0 #345

Merged
merged 2 commits into from
Mar 4, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Fetch dependencies
run: cargo fetch

- name: Build
run: cargo build

- name: Run tests
run: cargo test --workspace

Expand Down Expand Up @@ -98,9 +98,9 @@ jobs:

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Fetch dependencies
run: cargo fetch

- name: Run clippy
run: cargo clippy --all-features -- --deny warnings
run: cargo clippy -- --deny warnings
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rustc-hash = "1.1.0"
smallvec = "1.10.0"
educe = "0.4.20"
taffy = { version = "0.4", features = ["grid"] }
rfd = { version = "0.11.4", default-features = false, features = [
rfd = { version = "0.14.0", default-features = false, features = [
"xdg-portal",
] }
raw-window-handle = "0.5.1"
Expand Down Expand Up @@ -59,8 +59,12 @@ image = { version = "0.24", features = ["jpeg", "png"] }
copypasta = { version = "0.10.0", default-features = false, features = ["wayland", "x11"] }

[features]
default = ["editor"]
# TODO: this is only winit and the editor serde, there are other dependencies that still depend on
default = ["editor", "rfd-tokio"]
panekj marked this conversation as resolved.
Show resolved Hide resolved
# TODO: this is only winit and the editor serde, there are other dependencies that still depend on
# serde
serde = ["floem-winit/serde", "dep:serde"]
editor = ["floem-editor-core", "dep:lapce-xi-rope", "dep:strum", "dep:strum_macros", "dep:downcast-rs"]

# rfd async runtime
rfd-async-std = ["rfd/async-std"]
rfd-tokio = ["rfd/tokio"]
Loading