3个不稳定版本

0.2.0 2023年1月12日
0.1.1 2023年1月11日
0.1.0 2023年1月11日

#35#year

Download history • Rust 包仓库 34/week @ 2024-04-08 • Rust 包仓库 44/week @ 2024-04-15 • Rust 包仓库 38/week @ 2024-04-22 • Rust 包仓库 28/week @ 2024-04-29 • Rust 包仓库 31/week @ 2024-05-06 • Rust 包仓库 47/week @ 2024-05-13 • Rust 包仓库 37/week @ 2024-05-20 • Rust 包仓库 31/week @ 2024-05-27 • Rust 包仓库 33/week @ 2024-06-03 • Rust 包仓库 31/week @ 2024-06-10 • Rust 包仓库 23/week @ 2024-06-17 • Rust 包仓库 24/week @ 2024-06-24 • Rust 包仓库 16/week @ 2024-07-08 • Rust 包仓库 20/week @ 2024-07-15 • Rust 包仓库 30/week @ 2024-07-22 • Rust 包仓库

69 每月下载量
aoc-cli 中使用

MITGPL-3.0+

32KB
771 代码行

aoc-client

Build and test Clippy and format crates.io

Advent of Code库 🎄

aoc-client 是一个用于 Advent of Code 的 Rust库。它用于构建 aoc-cli 命令行工具,但也可集成到其他项目中。

用法 ⛄️

将以下依赖项添加到您的Rust项目中(在 Cargo.toml

[dependencies]
aoc-client = "0.1"

创建一个 AocClient 实例并调用其方法

use aoc_client::{AocClient, AocResult};

fn main() -> AocResult<()> {
    let client = AocClient::builder()
        .session_cookie_from_default_locations()?
        .year(2022)?
        .day(1)?
        .build()?;

    let _input: String = client.get_input()?;

    // Solve part 1 using your input and then submit your answer
    let answer_part1 = 1234;
    client.submit_answer(1, answer_part1)?;

    // Solve part 2 using your input and then submit your answer
    let answer_part2 = 5678;
    client.submit_answer(2, answer_part2)?;

    Ok(())
}

贡献 🦌

欢迎反馈和pull requests。请参阅 CONTRIBUTING 以获取指南和想法。

支持Advent of Code 🎁

Advent of Code是由 Eric Wastl 创建并由志愿者维护的免费在线 Advent日历,包含小型编程谜题。请考虑 支持他们的工作

依赖项

~10–23MB
~367K SLoC