-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 1.04 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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2024-2025 UxuginPython
[package]
name = "rrtk"
version = "0.6.1"
license = "BSD-3-Clause"
edition = "2021"
authors = ["UxuginPython <uxugin at uxugin dot com>"]
repository = "https://github.com/UxuginPython/rrtk"
description = "Rust Robotics ToolKit"
keywords = ["robotics", "control"]
categories = ["science::robotics", "no-std"]
exclude = ["generatetestall.py", "testall.sh", "checkall.sh"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libm = { version = "0.2.11", default-features = false, optional = true }
micromath = { version = "2.1.0", default-features = false, optional = true }
[features]
alloc = []
std = ["alloc", "internal_enhanced_float"]
devices = []
dim_check_debug = []
dim_check_release = ["dim_check_debug"]
libm = ["dep:libm", "internal_enhanced_float"]
micromath = ["dep:micromath", "internal_enhanced_float"]
internal_enhanced_float = []
default = ["std", "dim_check_debug"]
[package.metadata.docs.rs]
all-features = true