-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (34 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "ksef-client"
version = "0.2.2"
edition = "2024"
authors = ["pengwius <pengwius@protonmail.ch>"]
description = "SDK for integrating with the Polish National e-Invoice System (KSeF)."
license = "MIT"
categories = ["api-bindings","web-programming::http-client"]
repository = "https://github.com/pengwius/ksef-client-rust"
keywords = ["ksef", "faktury", "e-invoices", "poland", "client"]
[dependencies]
thiserror = "2.0"
clap = { version = "4.6", features = ["derive"], optional = true }
openssl = "0.10"
chrono = { version = "0.4", features = ["serde"] }
rand = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
regex = "1.10"
base64 = "0.22"
zip = "8.2"
async-trait = "0.1.89"
secrecy = { version = "0.8", features = ["serde"] }
[dev-dependencies]
ksef-client = { path = ".", features = ["testing-utils"] }
[features]
default = []
testing-utils = ["dep:clap"]
[[bin]]
name = "certgen"
path = "certgen/certgen.rs"
required-features = ["testing-utils"]