tbot 0.2.0

Make cool Telegram bots with Rust easily.
Documentation
test:
    stage: test
    script:
        - cargo fmt -- --check
        - cargo clippy --target-dir=../target -- -D warnings
        - cargo clippy --target-dir=../target --all-features -- -D warnings
        - cargo test --target-dir=../target --all-features
    only:
        - branches

pages:
    stage: docs
    script:
        - cargo doc --release --no-deps --target-dir=../target
        - mv ../target/doc ./public
        - echo '<meta http-equiv="refresh" content="0; url=./tbot/index.html">' > ./public/index.html
    artifacts:
        paths:
            - public
    only:
        - master

stages:
    - test
    - docs