Skip to content

Commit

Permalink
Upgrade Cargo TOML
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBossbaly committed Jun 16, 2024
1 parent e300cb5 commit ffda8cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,8 @@ jobs:
- name: Build
run: |
cargo build --release
- name: Dry Publish
uses: katyo/publish-crates@v2
with:
dry-run: true
13 changes: 9 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ repository = "https://github.com/StefanBossbaly/amtrak-api/"
authors = ["Stefan Bossbaly <sbossb@gmail.com>"]
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = [
"/src/**/*.rs",
"/examples/*.rs",
"/README.md",
"/LICENSE"
]

[dependencies]
reqwest = { version = "0.12.4", features = ["json"] }
serde_json = "1.0.117"
serde = { version = "1.0.201", features = ["derive"] }
serde = { version = "1.0.203", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0.60"
thiserror = "1.0.61"

[dev-dependencies]
mockito = "1.4.0"
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["full"] }
serde_path_to_error = "0.1.16"
anyhow = "1.0.86"

Expand Down

0 comments on commit ffda8cc

Please sign in to comment.