-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 1.03 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]
authors = ["Jakob Pohl", "Christoph Gross", "Lukas Seehuber", "Florian Gehring"]
edition = "2021"
name = "mosaik-api"
version = "0.1.0"
license = "MIT"
description = "High-level API for Mosaik, a flexible Smart Grid co-simulation framework."
# homepage: only for dedicated websites different from the homepage of the repository
repository = "https://github.com/ekut-es/mosaik-api"
readme = "README.md"
# max 5 keywords
keywords = ["mosaik", "simulation", "framework", "api", "grid"]
# max 5 categories. Taken from https://crates.io/category_slugs
categories = ["api-bindings", "simulation"]
[dependencies]
async-std = "1"
async-trait = "0.1"
futures = "0.3"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
[dev-dependencies]
clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11"
mockall = "0.13"
[features]
default = []
# Increased Clippy levels...
[lints.clippy]
all = { level = "deny", priority = -1 }
expect_used = "warn"
panic_in_result_fn = "warn"
unwrap_used = "deny"