libcsp-rust/libcsp/Cargo.toml

19 lines
700 B
TOML
Raw Normal View History

2024-05-29 00:25:05 +02:00
[package]
2024-06-01 12:02:34 +02:00
name = "libcsp"
2024-05-29 00:25:05 +02:00
version = "0.1.0"
edition = "2021"
2024-06-01 01:14:40 +02:00
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
2024-06-01 12:02:34 +02:00
description = "Safe and ergonomic Rust API for libcsp on top on libcsp-sys"
2024-06-01 01:14:40 +02:00
homepage = "https://egit.irs.uni-stuttgart.de/rust/libcsp-rust"
repository = "https://egit.irs.uni-stuttgart.de/rust/libcsp-rust"
license = "Apache-2.0"
keywords = ["no-std", "space", "aerospace", "ffi", "csp"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
categories = ["aerospace", "external-ffi-bindings", "no-std", "hardware-support", "embedded"]
2024-05-29 00:25:05 +02:00
[dependencies]
bitflags = "2"
2024-05-31 10:43:16 +02:00
num_enum = "0.7"
2024-05-31 16:56:44 +02:00
libc = "0.2"
2024-06-01 12:05:24 +02:00
libcsp-sys = { path = "../libcsp-sys" }