compose-idents 0.0.1

Rust macro that makes possible to concatenate idents from multiple parts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# https://taskfile.dev
version: '3'

tasks:
  test:
    env:
      RUST_BACKTRACE: full
    cmds:
      - cargo test --verbose
      - cargo run --example usage
  lint:
    cmds:
      - pre-commit run --all