-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (40 loc) · 1.22 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
39
40
41
42
43
44
# SPDX-FileCopyrightText: 2021 Fraunhofer Institute for Experimental Software Engineering IESE
# SPDX-FileCopyrightText: 2023 Jan Hecht
#
# SPDX-License-Identifier: MIT
[package]
name = "basyx-rs"
version = "0.2.1"
authors = [
"Daniel Hillen <[email protected]>",
"Andreas Schmidt <[email protected]>",
"Jan Hecht <[email protected]"
]
description = "A Rust library to work with Asset Administration Shells."
edition = "2021"
rust-version = "1.69.0"
homepage = "https://github.com/eclipse-basyx/rust-sdk"
documentation = "https://docs.rs/basyx-rs/"
readme = "README.md"
keywords = ["aas", "basyx", "serde"]
license = "MIT"
repository = "https://github.com/eclipse-basyx/rust-sdk"
[[bin]]
name = "aascheck"
path = "src/bin/aascheck.rs"
test = false
bench = false
[dependencies]
clap = { version = "3.0.0-beta.5", optional = true }
color-eyre = { version = "0.5.11", default-features = false }
colored = "2.0.0"
jsonschema = { version = "=0.17.0", default-features = false, features = ["draft201909"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
strum = "0.24.1"
strum_macros = "0.24.3"
regex = "1.8.1"
[features]
default = ["clap"]
explorer = []