html-datetime-local 0.1.0

A Rust library for parsing local date and time strings based on the WHATWG HTML Living Standard. This may be helpful for server-side code that deals with values from input type=datetime-local
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: lint

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - name: Setup Rust toolchain with caching
        uses: brndnmtthws/rust-action@v1
      - run: cargo fmt -- --check 
      - run: cargo clippy -- -Dwarnings
      - run: cargo test