-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 911 Bytes
/
Cargo.toml
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
39
40
41
[package]
name = "flem"
version = "0.6.2"
edition = "2021"
description = "Flexible, Light-weight, Embedded Messaging Protocol"
repository = "https://github.com/BridgeSource/flem-rs.git"
readme = "README.md"
keywords = ["embedded", "communication", "protocol",]
authors = ["Austin McElroy <[email protected], [email protected]>"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
std = []
[lib]
name = "flem"
crate-type = ["lib"]
bench = false
path = "src/lib.rs"
[[example]]
name = "flem"
path = "examples/example.rs"
[[example]]
name = "encode_decode"
path = "examples/encode_decode.rs"
[[example]]
name = "software_host_simple"
path = "examples/software_host_simple.rs"
[[example]]
name = "software_host_complex"
path = "examples/software_host_complex.rs"
[dev-dependencies]
heapless = "0.7"