Skip to content

v0.8.4

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Feb 12:05
· 115 commits to master since this release
b895e5d

Added

  • Added template field to compete.toml.

    [template]
    src = '''
    fn main() {
        todo!();
    }
    '''
    
    [template.new]
    profile = '''
    [dev]
    opt-level = 3
    '''
    dependencies = '''
    proconio = { version = "=0.3.6", features = ["derive"] }
    # ...
    '''
    
    [template.new.copy-files]
    "./template-cargo-lock.toml" = "Cargo.lock"
  • Made new and new.template optional.

Deprecated

  • Deprecated the new.template config.

    Use template instead.

Fixed