Skip to content

Commit

Permalink
Added crates metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
SirVer committed Nov 24, 2023
1 parent a82c941 commit fff97c7
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 10 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,12 @@ members = [
"zvt_builder",
"zvt_derive",
]

[workspace.package]
version = "0.1.0"
authors = ["Qwello GmbH <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/qwello/zvt/"
categories = ["finance", "embedded", "hardware-support"]
keywords = ["zvt", "ecr", "payment", "payment-terminal", "feig"]
13 changes: 9 additions & 4 deletions zvt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
[package]
name = "zvt"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = """
A crate to interact with payment terminals (ECRs) that use the ZVT protokoll, including stand alone commandline tools to interact with the devices.
"""

[dependencies]
anyhow = "1.0.70"
Expand All @@ -22,7 +28,6 @@ serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105"
futures = "0.3.28"


[dev-dependencies]
tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros"] }

Expand Down
12 changes: 9 additions & 3 deletions zvt_builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
[package]
name = "zvt_builder"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = """
A crate to interact with payment terminals (ECRs) that use the ZVT protokoll, including stand alone commandline tools to interact with the devices. This is an internal dependency for the ZVT crate.
"""

[dependencies]
chrono = "0.4.26"
Expand Down
12 changes: 9 additions & 3 deletions zvt_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
[package]
name = "zvt_derive"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
authors.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
description = """
A crate to interact with payment terminals (ECRs) that use the ZVT protokoll, including stand alone commandline tools to interact with the devices. This is an internal dependency for the ZVT crate.
"""

[lib]
proc-macro = true
Expand Down

0 comments on commit fff97c7

Please sign in to comment.