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 aoc-bins/aoc-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aoc-common"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
cookie = "0.18.1"
Expand Down
2 changes: 1 addition & 1 deletion aoc-bins/aoc-input-fetch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aoc-input-fetch"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
aoc-common = { path = "../aoc-common" }
Expand Down
2 changes: 1 addition & 1 deletion aoc-bins/aoc-private-leaderboard-fetch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aoc-private-leaderboard-fetch"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
aoc-common = { path = "../aoc-common" }
Expand Down
2 changes: 1 addition & 1 deletion aoc-bins/aoc-private-leaderboard-fetch/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use aoc_common::json::LeaderBoard;
use aoc_common::AocClient;
use aoc_common::json::LeaderBoard;
use std::collections::HashMap;
use std::env;
use std::error::Error;
Expand Down
2 changes: 1 addition & 1 deletion channels-sample/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "channels-sample"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
spmc = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion data-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "data-types"
version = "0.1.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion grrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "grrs"
version = "0.1.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion guessing-game/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "guessing_game"
version = "0.1.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion hello-world/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hello-world"
version = "0.1.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion interop/multiplier-dynamic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "multiplier"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]

Expand Down
2 changes: 1 addition & 1 deletion interop/multiplier-dynamic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[no_mangle]
#[unsafe(no_mangle)]
pub extern "C" fn multiply(a: i32, b: i32) -> i32 {
let mut res = 0;
if b < 0 {
Expand Down
2 changes: 1 addition & 1 deletion interop/multiplier-static/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "multiplier"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]

Expand Down
2 changes: 1 addition & 1 deletion interop/multiplier-static/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[no_mangle]
#[unsafe(no_mangle)]
pub extern "C" fn multiply(a: i32, b: i32) -> i32 {
let mut res = 0;
if b < 0 {
Expand Down
2 changes: 1 addition & 1 deletion reading-files/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "reading-files"
version = "0.1.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
Loading