49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
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 }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
fern = "0.6"
|
|
chrono = "0.4"
|
|
embedded-can = "0.4"
|
|
libc = "0.2"
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
strum_macros = "0.24"
|
|
num = "0.4"
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
byteorder = "1.4"
|
|
num_enum = "0.5"
|
|
|
|
[dependencies.socketcan]
|
|
git = "https://github.com/socketcan-rs/socketcan-rs.git"
|
|
rev = "1307b1fa76f7b98bbf7d414b88d8f30a41a753b4"
|
|
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"] |