-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
55 lines (47 loc) · 1.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
name = "open-cleverpad"
version = "0.4.0"
authors = ["DerFetzer <[email protected]>"]
edition = "2024"
# this lets you use `cargo fix`!
[[bin]]
name = "open-cleverpad"
test = false
bench = false
[profile.release]
lto = true
codegen-units = 1
debug = true
[profile.dev]
codegen-units = 1
opt-level = "z"
[dependencies.stm32f1xx-hal]
version = "0.10.0"
git = "https://github.com/stm32-rs/stm32f1xx-hal.git"
features = ["stm32f103", "medium", "stm32-usbd"]
[dependencies.cortex-m]
version = "0.7.7"
[dependencies.rtic]
version = "2.1.2"
features = ["thumbv7-backend"]
[dependencies]
rtic-monotonics = { version = "2.0.3", features = ["cortex-m-systick"] }
panic-halt = "1.0.0"
usb-device = { version = "0.3.2", features = ["control-buffer-256"]}
heapless = "0.7.17"
num_enum = { version = "0.7.3", default-features = false }
panic-reset = "0.1.1"
usbd-serial = "0.2.2"
defmt = "0.3.10"
critical-section = "1.2.0"