-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
38 lines (32 loc) · 1.17 KB
/
Cargo.toml
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
[package]
name = "rust-ocpp"
description = "ocpp 1.6 and 2.0.1 libraries"
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "1.0.4"
authors = ["Tommy Malmqvist <[email protected]"]
homepage = "https://codelabs.se/"
repository = "https://github.com/codelabsab/rust-ocpp"
edition = "2021"
keywords = ["ocpp", "ev", "csms"]
categories = ["accessibility", "data-structures", "embedded", "encoding", "web-programming::websocket"]
publish = true
exclude = ["docs/", "src/tests"]
[package.metadata.docs.rs]
all-features = true
[features]
default = ["v2_0_1"]
v1_6 = []
v2_0_1 = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", default-features = false, features = ["derive"] }
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
uuid = { version = "1", default-features = false, features = ["v4"] }
validator = { version = "0.18.1", default-features = false, features = ["derive"] }
regex = "1.10.6"
[dev-dependencies]
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
serde_json = "1"
mockall = "0.13.0"
jsonschema = "0.19"