Skip to content

Commit

Permalink
publish v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Chenzw authored Apr 22, 2022
1 parent 02b436d commit 699bbb8
Show file tree
Hide file tree
Showing 17 changed files with 3,210 additions and 10 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test

on:
push:
branches: [master, dev]
pull_request:
branches: [master]

env:
CARGO_TERM_COLOR: always

jobs:
test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
args: ['', '--release']
steps:
- uses: actions/checkout@v2
- name: Setup
run: rustup update stable && rustup default stable
- name: Build
run: cargo build --verbose ${{ matrix.args }}
- name: Run tests
run: cargo test --verbose ${{ matrix.args }}
17 changes: 15 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
[package]
name = "serde_jce"
version = "0.1.0"
authors = ["Simon Chen <[email protected]>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
rust-version = "1.56"
description = "Jce format support for serde-rs"
homepage = "https://github.com/Simon-Chenzw/serde_jce"
repository = "https://github.com/Simon-Chenzw/serde_jce"
license = "MIT"
keywords = ["jce", "serde", "serialization"]
categories = ["encoding"]

[dependencies]
serde = "1.0"
base64 = "0.13"

[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
hex-literal = "0.3"
Loading

0 comments on commit 699bbb8

Please sign in to comment.