Skip to content
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
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MISE_CARGO_BINSTALL = "true"

[tools]
"aqua:cargo-bins/cargo-binstall" = "1"
rust = "1.80"
rust = "1.85"
make = "latest"
# # experimental
"cargo:cargo-nextest" = "0.9"
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ resolver = "2"
members = ["cdevents-sdk", "generator"]

[workspace.package]
edition = "2021"
edition = "2024"
version = "0.1.3"
authors = [
# The actual list of contributors can be retrieved from the git log
"The CDEvents Rust SDK Authors",
]
license = "Apache-2.0"
repository = "https://github.com/cdevents/sdk-rust"
rust-version = "1.80"
rust-version = "1.85"
publish = false
2 changes: 1 addition & 1 deletion generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use glob::glob;
use handlebars::{DirectorySourceOptions, Handlebars};
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use serde_json::{Value, json};
use std::{collections::HashMap, fs, path::PathBuf};
use version::Version;

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.80.0"
channel = "1.85.0"