Skip to content

Commit

Permalink
cargo toml improvements (#16)
Browse files Browse the repository at this point in the history
* specify files to include

* use simplified dependency format

* bump patch version
  • Loading branch information
bertrmz authored Aug 29, 2024
1 parent 2aa2f62 commit 9be3fcc
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
[package]
name = "passage_flex"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["[email protected]"]
description = "Provides verification of server-side authentication for applications using Passage Passkey Flex"
homepage = "https://github.com/passageidentity/passage-flex-rust"
repository = "https://github.com/passageidentity/passage-flex-rust"
readme = "README.md"
license = "MIT"
include = ["/src", "README.md"]

[dependencies]
http = "^1.1.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
serde_repr = "^0.1"
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
reqwest = { version = "^0.12", features = ["json", "multipart"] }
http = "1.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
url = "2.5"
uuid = { version = "1.8", features = ["serde", "v4"] }
reqwest = { version = "0.12", features = ["json", "multipart"] }

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
Expand Down

0 comments on commit 9be3fcc

Please sign in to comment.