[go: up one dir, main page]

doc-comment 0.1.3

Macro to generate doc comments
Documentation
1
2
3
4
5
6
7
8
9
10
11
language: rust
rust:
  - nightly
  - beta
  - stable
script:
  - rustc --version
  - (rustc --version | grep nightly && echo "nightly build!") || touch not_nightly
  - cargo build
  - cargo test
  - if [ ! -f not_nightly ]; then cargo test --features no_core; fi