-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (25 loc) · 885 Bytes
/
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
[package]
name = "stellwerksim"
version = "0.2.0"
edition = "2021"
description = "Rust SDK for StellwerkSim."
authors = ["Marie Ramlow <[email protected]>"]
readme = "./README.md"
license = "MIT OR Apache-2.0"
keywords = ["stellwerksim"]
repository = "https://github.com/NyCodeGHG/stellwerksim-rs"
[features]
default = ["simulator-time", "timetable"]
simulator-time = ["dep:chrono", "dep:serde_with"]
timetable = ["dep:chrono", "dep:serde_with"]
[dependencies]
tokio = { version = "1", features = ["net", "io-util", "sync"] }
serde = { version = "1", features = ["derive"] }
serde-xml-rs = "0.6"
thiserror = "1"
chrono = { version = "0.4", features = ["serde"], optional = true }
serde_with = { version = "2", features = ["chrono"], optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[package.metadata.docs.rs]
all-features = true