Skip to content

Commit

Permalink
build: make it ready for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloeckchengrafik committed Mar 14, 2024
1 parent f9920a7 commit 450bea4
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
11 changes: 8 additions & 3 deletions crates/ftswarm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ name = "ftswarm"
version = "0.1.0"
edition = "2021"
description = "A simple swarm protocol communication library"
license = "MIT"
repository = "https://github.com/Bloeckchengrafik/ftswarm-rs"
readme = "../../README.md"
keywords = ["ftswarm", "communication", "iot", "robotics"]
categories = ["network-programming", "science::robotics"]

[dependencies]
ftswarm_proto = { path = "../ftswarm_proto" }
ftswarm_serial = { path = "../ftswarm_serial" }
ftswarm_macros = { path = "../ftswarm_macros" }
ftswarm_proto = { path = "../ftswarm_proto", version = "0.1.0" }
ftswarm_serial = { path = "../ftswarm_serial", version = "0.1.0" }
ftswarm_macros = { path = "../ftswarm_macros", version = "0.1.0" }
rand = "0.9.0-alpha.0"
tokio.workspace = true
log.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions crates/ftswarm_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
name = "ftswarm_macros"
version = "0.1.0"
edition = "2021"
description = "Procedural macros for the ftswarm crate"
license = "MIT"
repository = "https://github.com/Bloeckchengrafik/ftswarm-rs"
readme = "../../README.md"
keywords = ["ftswarm", "communication", "iot", "robotics"]
categories = ["network-programming", "science::robotics"]

publish = true

[lib]
proc-macro = true
Expand Down
8 changes: 8 additions & 0 deletions crates/ftswarm_proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
name = "ftswarm_proto"
version = "0.1.0"
edition = "2021"
description = "Protocol definitions for the ftswarm serial communication protocol"
license = "MIT"
repository = "https://github.com/Bloeckchengrafik/ftswarm-rs"
readme = "../../README.md"
keywords = ["ftswarm", "communication", "iot", "robotics"]
categories = ["network-programming", "science::robotics"]

publish = true

[[example]]
name = "proto_command"
Expand Down
8 changes: 8 additions & 0 deletions crates/ftswarm_serial/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
name = "ftswarm_serial"
version = "0.1.0"
edition = "2021"
description = "Unified serial api for the ftSwarm Rust API"
license = "MIT"
repository = "https://github.com/Bloeckchengrafik/ftswarm-rs"
readme = "../../README.md"
keywords = ["ftswarm", "communication", "iot", "robotics"]
categories = ["network-programming", "science::robotics"]

publish = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 450bea4

Please sign in to comment.