Skip to content

Commit

Permalink
Updating msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Aug 31, 2024
1 parent a754e58 commit 09b32c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: 1.65.0
rust-version: 1.70.0
- name: Run unit tests
run: cargo test
2 changes: 1 addition & 1 deletion .rustme/config.ron
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Configuration(
glossaries: [
"https://github.com/khonsulabs/.github/raw/main/snippets/glossary.ron",
{
"msrv": "1.65",
"msrv": "1.70",
"ref-name": (
default: "main",
release: "v0.1.0",
Expand Down
49 changes: 0 additions & 49 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[features]
editor = ["serde", "cushy", "dep:anyhow"]
editor = ["serde", "cushy"]
cushy = ["dep:cushy"]
serde = ["dep:serde", "easing-function/serde"]

Expand All @@ -23,7 +23,6 @@ easing-function = "0.1.0"

# Editor dependencies
cushy = { git = "https://github.com/khonsulabs/cushy", optional = true }
anyhow = { version = "1.0.86", optional = true, features = ["backtrace"] }

[dev-dependencies]
pot = "3.0.0"
Expand Down
5 changes: 2 additions & 3 deletions src/funnybones.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn add_bones_to_skeleton(
}
}

fn main() -> anyhow::Result<()> {
fn main() -> cushy::Result {
let editing_skeleton = EditingSkeleton::default();
let (watcher, skeleton) = ChangeAggregator::new({
let editing_skeleton = editing_skeleton.clone();
Expand Down Expand Up @@ -123,8 +123,7 @@ fn main() -> anyhow::Result<()> {
.expand(),
)
.into_columns()
.run()?;
Ok(())
.run()
}

#[derive(Clone, Debug, PartialEq, Default)]
Expand Down

0 comments on commit 09b32c2

Please sign in to comment.