29 lines
942 B
TOML
29 lines
942 B
TOML
[package]
|
|
name = "eurosim-obsw"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Linus Köster <linus@koester-im-web.de>", "Robin Müller <muellerr@irs.uni-stuttgart.de>"]
|
|
description = "EuroSim OBSW Implementation"
|
|
homepage = "https://egit.irs.uni-stuttgart.de/rust/eurosim-obsw"
|
|
repository = "https://egit.irs.uni-stuttgart.de/rust/eurosim-obsw"
|
|
# license = "Apache-2.0"
|
|
categories = ["aerospace", "hardware-support", "embedded"]
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
socketcan = {version = "1.7.0", optional = true }
|
|
|
|
#[dependencies.spacepackets]
|
|
#path = "../satrs-launchpad/spacepackets"
|
|
|
|
[dependencies.satrs-core]
|
|
path = "../satrs-launchpad/satrs-core"
|
|
|
|
[dependencies.satrs-mib]
|
|
path = "../satrs-launchpad/satrs-mib"
|
|
|
|
[features]
|
|
default = ["can"]
|
|
can = ["socketcan"] |