-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 1.44 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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2024-2026 UxuginPython
[package]
name = "rrtk"
version = "0.7.0"
license = "BSD-3-Clause"
edition = "2024"
rust-version = "1.95"
authors = ["UxuginPython <blinker-hazy-ultra at duck dot com>"]
homepage = "http://rrtk.org/crate/rrtk"
repository = "https://github.com/UxuginPython/rrtk"
description = "Rust Robotics ToolKit: A data flow-based robotics framework designed for embedded systems."
keywords = ["robotics", "control", "stream", "device", "dimensional-analysis"]
categories = ["science::robotics", "embedded", "no-std::no-alloc"]
# We can't exclude the SVGs because they're needed for building the docs.
exclude = ["/generatetestall.py", "/testall.sh", "/testallmiri.sh", "/checkall.sh", "/featurequickcheck.sh", "/exclude/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libm = { version = ">=0.1, <0.3", default-features = false, optional = true }
micromath = { version = ">=1.0.1, <3", default-features = false, optional = true }
[features]
alloc = []
std = ["alloc", "internal_enhanced_float"]
devices = []
libm = ["dep:libm", "internal_enhanced_float"]
micromath = ["dep:micromath", "internal_enhanced_float"]
internal_enhanced_float = []
default = ["std"]
[lints.clippy]
alloc_instead_of_core = "deny"
std_instead_of_core = "deny"
std_instead_of_alloc = "deny"
excessive_precision = "allow"
[package.metadata.docs.rs]
all-features = true