unified the package names
Dieser Commit ist enthalten in:
Ursprung
8905f24d2b
Commit
d430c8e15e
8 geänderte Dateien mit 11 neuen und 11 gelöschten Zeilen
6
Cargo.lock
generiert
6
Cargo.lock
generiert
|
@ -3,15 +3,15 @@
|
||||||
version = 4
|
version = 4
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "adventofcode"
|
name = "advent-of-code"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"adventofcode-macros",
|
"advent-of-code-macros",
|
||||||
"regex",
|
"regex",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "adventofcode-macros"
|
name = "advent-of-code-macros"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "adventofcode"
|
name = "advent-of-code"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "My solutions for Advent of code 2024"
|
description = "My solutions for Advent of code 2024"
|
||||||
|
@ -310,7 +310,7 @@ name = "advent_of_code"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
||||||
[dependencies.adventofcode-macros]
|
[dependencies.advent-of-code-macros]
|
||||||
path = "macros"
|
path = "macros"
|
||||||
|
|
||||||
[dependencies.regex]
|
[dependencies.regex]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "adventofcode-macros"
|
name = "advent-of-code-macros"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use advent_of_code::strings::{get_numbers, get_string_numbers};
|
use advent_of_code::strings::{get_numbers, get_string_numbers};
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use adventofcode_macros::{include_data, include_example};
|
use advent_of_code_macros::{include_data, include_example};
|
||||||
|
|
||||||
include_data!(DATAa 2023 01a);
|
include_data!(DATAa 2023 01a);
|
||||||
include_data!(DATAb 2023 01b);
|
include_data!(DATAb 2023 01b);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use advent_of_code::strings::parsenumber;
|
use advent_of_code::strings::parsenumber;
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use adventofcode_macros::{include_data, include_example};
|
use advent_of_code_macros::{include_data, include_example};
|
||||||
|
|
||||||
include_example!(DATA 2023 02);
|
include_example!(DATA 2023 02);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use advent_of_code::strings::{parsenumber, splitspace};
|
use advent_of_code::strings::{parsenumber, splitspace};
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use adventofcode_macros::{include_data, include_example};
|
use advent_of_code_macros::{include_data, include_example};
|
||||||
|
|
||||||
include_data!(DATA 2024 01);
|
include_data!(DATA 2024 01);
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ use std::fmt::Display;
|
||||||
|
|
||||||
use advent_of_code::strings::parsenumber;
|
use advent_of_code::strings::parsenumber;
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use adventofcode_macros::{include_data, include_example};
|
use advent_of_code_macros::{include_data, include_example};
|
||||||
|
|
||||||
include_data!(DATA 2024 02);
|
include_data!(DATA 2024 02);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use advent_of_code::strings::parsenumber;
|
use advent_of_code::strings::parsenumber;
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
use adventofcode_macros::{include_data, include_example};
|
use advent_of_code_macros::{include_data, include_example};
|
||||||
use regex::{Captures, Regex};
|
use regex::{Captures, Regex};
|
||||||
|
|
||||||
include_data!(DATA 2024 03);
|
include_data!(DATA 2024 03);
|
||||||
|
|
Laden …
Tabelle hinzufügen
In neuem Issue referenzieren