Skip to content

Commit

Permalink
First commit!
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirbaio committed Mar 11, 2021
0 parents commit ac2eb9a
Show file tree
Hide file tree
Showing 12 changed files with 997 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Rust

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: install
run: rustup target add thumbv7em-none-eabi thumbv6m-none-eabi
- name: Build
run: ./ci.sh
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
289 changes: 289 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "atomic-pool"
version = "0.1.0"
authors = ["Dario Nieuwenhuis <[email protected]>"]
edition = "2018"

[features]
std = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []

[dependencies]
atomic-polyfill = "0.1.1"
as-slice = { version = "0.1.4" }
stable_deref_trait = { version = "1.2.0", default-features = false }

defmt = { version = "0.2.0", optional = true }
log = { version = "0.4.11", optional = true }
Loading

0 comments on commit ac2eb9a

Please sign in to comment.