Skip to content

v0.10.6

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Aug 10:29
· 3 commits to master since this release
a3eb32c

Changed

  • Reworked the submit configuration. (#205)

    submit.transpile still works but is deprecated.

    [submit]
    kind = "file"
    path = "{{ src_path }}"
    language_id = "5054" # Atcoder 202301
    [submit]
    kind = "command"
    args = ["cargo", "+1.70.0", "equip", "--exclude-atcoder-202301-crates", "--remove", "docs", "--minify", "libs", "--bin", "{{ bin_name }}"]
    language_id = "5054" # Atcoder 202301

    Now the default of submit is:

    [submit]
    kind = "file"
    path = "{{ src_path }}"
    language_id = "4050" # AtCoder 202004

    For today's AGC064, you have to:

    • Update compete.toml:
      • template.new.edition
      • template.new.dependencies
      • test.toolchain
      • submit (as above. note that you also have to write language_id = "5054")
    • Update template-cargo-lock.toml

    before cargo compete new.

    Refer to rust-lang-ja/atcoder-proposal@202301-update-2023-07-17-freeze. This repository should be used in the real AtCoder judge system.