Skip to content

Commit

Permalink
Merge parse-zoneinfo into the chrono-tz repository/workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Apr 15, 2024
2 parents 4529732 + 0207cf4 commit 15eece0
Show file tree
Hide file tree
Showing 15 changed files with 7,256 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Rust

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Format
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
target
Cargo.lock
*.swp
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["chrono-tz", "chrono-tz-build"]
members = ["chrono-tz", "chrono-tz-build", "parse-zoneinfo"]
resolver = "2"
5 changes: 3 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Chrono-TZ is dual-licensed under the MIT License and Apache 2.0 Licence.
The licenses do not apply to files in the tzdb folder which are in the
public domain.
public domain. parse-zoneinfo was forked from zoneinfo-parse, which
was originally created by Benjamin Sago (under the MIT license).

Copyright (c) 2016 Djzin
Copyright (c) 2016-2024 Benjamin Sago & the chronotope maintainers

The MIT License

Expand Down
Loading

0 comments on commit 15eece0

Please sign in to comment.