-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 828 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 828 Bytes
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
[package]
name = "control-sys"
version = "0.1.0"
authors = ["Romain Desarzens <rdsrz@pm.me>"]
description = "A Control System library implemented in Rust to design and analyze control systems."
repository = "https://github.com/rdesarz/control-sys-rs"
readme = "README.md"
categories = ["science", "mathematics", "wasm"]
keywords = ["control-theory", "control-systems", "state-space-model"]
license = "MIT"
edition = "2021"
include = [
"/README.md",
"/src/",
"/examples/",
]
[dependencies]
plotters = "0.3.3"
nalgebra = "0.33.2"
[[example]]
name = "step_response"
path = "examples/step_response.rs"
[[example]]
name = "controllability"
path = "examples/controllability.rs"
[[example]]
name = "end_to_end"
path = "examples/end_to_end.rs"
[[example]]
name = "analysis_report"
path = "examples/analysis_report.rs"