-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (35 loc) · 1.02 KB
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
# See a full list of keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "thormotion"
authors = ["Amelia Fraser-Dale"]
categories = ["hardware-support", "science", "science::robotics"]
description = "A cross-platform motion control library for Thorlabs systems, written in Rust."
documentation = "https://docs.rs/thormotion/"
edition = "2024"
keywords = ["thorlabs", "research", "automation", "robotics", "mechatronics"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/MillieFD/thormotion"
version = "0.4.2"
[lib]
name = "thormotion"
crate-type = ["lib"]
[features]
py = ["dep:pyo3"]
[dependencies]
smol = "2.0"
async-broadcast = "0.7"
ahash = "0.8"
log = "0.4"
[dependencies.nusb]
version = "0.2"
features = ["smol"]
[dependencies.thormacros]
path = "thormacros"
version = "0.1"
[dependencies.pyo3]
version = "0.28.0"
features = ["experimental-async", "extension-module", "experimental-inspect"]
optional = true
[dev-dependencies]
env_logger = "0.11"