-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from emit-rs/feat/library-rewrite
Bring over the rewrite from KodrAus/emit
- Loading branch information
Showing
177 changed files
with
27,763 additions
and
2,361 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: all | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
- name: Run tests | ||
run: cargo test --all --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: batcher | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./batcher | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./batcher | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./batcher | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: core | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./core | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./core | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./core | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions | ||
|
||
embedded: | ||
name: Build (embedded) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: | | ||
rustup default nightly | ||
rustup target add thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: Powerset | ||
working-directory: ./core | ||
run: cargo hack check --each-feature --exclude-features std,alloc,implicit_rt,implicit_internal_rt -Z avoid-dev-deps --target thumbv6m-none-eabi | ||
|
||
miri: | ||
name: Test (Miri) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Miri | ||
run: | | ||
rustup toolchain install nightly --component miri | ||
cargo +nightly miri setup | ||
- name: Default features | ||
working-directory: ./core | ||
run: cargo +nightly miri test --lib | ||
|
||
- name: All features | ||
working-directory: ./core | ||
run: cargo +nightly miri test --lib --all-features | ||
|
||
- name: No features | ||
working-directory: ./core | ||
run: cargo +nightly miri test --lib --no-default-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: emit | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions | ||
|
||
embedded: | ||
name: Build (embedded) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: | | ||
rustup default nightly | ||
rustup target add thumbv6m-none-eabi | ||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: Powerset | ||
run: cargo hack check --each-feature --exclude-features default,rand,std,alloc,implicit_rt,implicit_internal_rt -Z avoid-dev-deps --target thumbv6m-none-eabi | ||
|
||
miri: | ||
name: Test (Miri) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Miri | ||
run: | | ||
rustup toolchain install nightly --component miri | ||
cargo +nightly miri setup | ||
- name: Default features | ||
run: cargo +nightly miri test --lib | ||
|
||
- name: No features | ||
run: cargo +nightly miri test --lib --no-default-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: file | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./emitter/file | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./emitter/file | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./emitter/file | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: macros | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./macros | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./macros | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./macros | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: opentelemetry | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./emitter/opentelemetry | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./emitter/opentelemetry | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./emitter/opentelemetry | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: otlp | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./emitter/otlp | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./emitter/otlp | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./emitter/otlp | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: term | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
|
||
- name: Install Rust toolchain | ||
run: rustup default nightly | ||
|
||
- name: Install cargo-hack | ||
run: cargo install cargo-hack | ||
|
||
- name: All | ||
working-directory: ./emitter/term | ||
run: cargo test --all-features | ||
|
||
- name: Powerset | ||
working-directory: ./emitter/term | ||
run: cargo hack test --feature-powerset --lib | ||
|
||
- name: Minimal versions | ||
working-directory: ./emitter/term | ||
run: cargo hack test --feature-powerset --lib -Z minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
# Compiled files | ||
*.o | ||
*.so | ||
*.rlib | ||
*.dll | ||
|
||
# Executables | ||
*.exe | ||
|
||
# Generated by Cargo | ||
/target/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock | ||
.idea | ||
/target | ||
Cargo.lock | ||
*.orig | ||
/wip | ||
**/*.rs.bk | ||
*.log |
Oops, something went wrong.