Compare commits
43 Commits
Flakebi/os
...
warning-cl
| Author | SHA1 | Date | |
|---|---|---|---|
| 05507c2199 | |||
| 6043fc6d6a | |||
| 74719369dd | |||
| 4b04d52dae | |||
|
|
6cca562598 | ||
| e1d5d27db6 | |||
|
|
430d907c42 | ||
| b0277bb0ad | |||
| 4df1173ecb | |||
| f4755e9b37 | |||
| 61533920f6 | |||
|
|
9ab60920d2 | ||
|
|
c981004290 | ||
| bc156c36d7 | |||
| fc5e1e7e97 | |||
|
|
34c0267144 | ||
|
|
d7d39d7095 | ||
| 77a9c2b48f | |||
| 4ea0b30437 | |||
|
|
fcba9cb4be | ||
| 1568c1bbf9 | |||
|
|
3bc5c14a19 | ||
| 35cdea3dbe | |||
| 1e141a9393 | |||
|
|
2d2d9a3bbb | ||
| 19a466bb07 | |||
| c585acc530 | |||
| 483e692109 | |||
|
|
8305ec24d7 | ||
| 04ee38744f | |||
|
|
1903cb6ab5 | ||
| 90d24b6d89 | |||
| fcab888856 | |||
|
|
559db125d3 | ||
| 1a246d5970 | |||
| 7f836fc3ed | |||
|
|
7db7a487f4 | ||
| 7b6e48d8fb | |||
| c7bc3f9513 | |||
|
|
d4ac17598a | ||
| 5d07dc7cc3 | |||
| 5bb01ae0e4 | |||
| ce2bf1407c |
33
.github/workflows/rust.yml
vendored
Normal file
33
.github/workflows/rust.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "develop", "ci" ]
|
||||
pull_request:
|
||||
branches: [ "develop" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
rust: [stable]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ matrix.rust }}
|
||||
default: true
|
||||
override: true
|
||||
- name: Format Check
|
||||
run: cargo fmt --check
|
||||
- name: Build
|
||||
run: cargo build
|
||||
- name: Run tests
|
||||
run: cargo test
|
||||
17
Cargo.toml
17
Cargo.toml
@@ -1,18 +1,21 @@
|
||||
[package]
|
||||
name = "simple_asn1"
|
||||
version = "0.4.0"
|
||||
version = "0.6.2"
|
||||
authors = ["Adam Wick <awick@uhsure.com>"]
|
||||
description = "A simple DER/ASN.1 encoding/decoding library."
|
||||
categories = ["encoding"]
|
||||
keywords = ["ASN1","encoding","DER"]
|
||||
license-file = "LICENSE"
|
||||
license = "ISC"
|
||||
repository = "https://github.com/acw/simple_asn1"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
chrono = "^0.4.0"
|
||||
num-bigint = "^0.2.0"
|
||||
num-traits = "^0.2.0"
|
||||
num-bigint = { default-features = false, version = "0.4" }
|
||||
num-traits = { default-features = false, version = "0.2" }
|
||||
thiserror = { default-features = false, version = "1" }
|
||||
time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing"] }
|
||||
|
||||
[dev-dependencies]
|
||||
quickcheck = "^0.7.1"
|
||||
rand = "0.5.5"
|
||||
quickcheck = "1.0.3"
|
||||
rand = "0.8.4"
|
||||
time = { default-features = false, version = "0.3", features = ["formatting", "macros", "parsing", "quickcheck"] }
|
||||
|
||||
844
src/lib.rs
844
src/lib.rs
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user