-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02b436d
commit 699bbb8
Showing
17 changed files
with
3,210 additions
and
10 deletions.
There are no files selected for viewing
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,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 }} |
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,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" |
Oops, something went wrong.