2021-01-27 15:37:06 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
|
|
|
"./core_generator",
|
|
|
|
]
|
|
|
|
|
2016-07-06 23:59:51 +00:00
|
|
|
[package]
|
2018-11-03 01:41:57 +00:00
|
|
|
name = "ruduino"
|
2022-06-08 09:32:07 +00:00
|
|
|
version = "0.4.0"
|
2020-06-19 18:03:43 +00:00
|
|
|
edition = "2018"
|
2016-07-06 23:59:51 +00:00
|
|
|
authors = [
|
|
|
|
"The AVR-Rust Project Developers",
|
|
|
|
"Jake Goulding <jake.goulding@gmail.com>",
|
2017-12-13 13:50:06 +00:00
|
|
|
"Dylan McKay <me@dylanmckay.io>",
|
2016-07-06 23:59:51 +00:00
|
|
|
]
|
2017-12-13 13:53:28 +00:00
|
|
|
|
2016-07-06 23:59:51 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
2018-11-03 01:41:57 +00:00
|
|
|
repository = "https://github.com/avr-rust/ruduino"
|
2016-07-06 23:59:51 +00:00
|
|
|
description = """
|
2017-12-16 23:58:41 +00:00
|
|
|
Reusable components for AVR microcontrollers
|
2016-07-06 23:59:51 +00:00
|
|
|
"""
|
2017-12-13 13:53:28 +00:00
|
|
|
|
2016-07-06 23:59:51 +00:00
|
|
|
keywords = ["avr", "arduino", "uno"]
|
2017-08-29 13:48:44 +00:00
|
|
|
|
2020-07-25 13:54:43 +00:00
|
|
|
[features]
|
|
|
|
default = ["avr-std-stub"]
|
2021-01-29 07:16:51 +00:00
|
|
|
all-mcus = []
|
2020-07-25 13:54:43 +00:00
|
|
|
|
2020-07-02 13:37:00 +00:00
|
|
|
[dependencies]
|
2021-02-01 13:07:33 +00:00
|
|
|
avr-config = { version = "2.0", features = ["cpu-frequency"] }
|
2022-06-16 19:44:03 +00:00
|
|
|
avr_delay = { git = "https://github.com/avr-rust/delay", rev = "849918a8dfb2" }
|
2020-07-25 13:54:43 +00:00
|
|
|
avr-std-stub = { version = "1.0", optional = true }
|
2021-01-27 15:57:24 +00:00
|
|
|
const_env--value = "0.1"
|
2020-07-02 13:37:00 +00:00
|
|
|
target-cpu-macro = "0.1"
|
2021-01-29 07:16:51 +00:00
|
|
|
|
2021-01-29 08:46:01 +00:00
|
|
|
[build-dependencies]
|
|
|
|
avr-mcu = "0.3"
|
|
|
|
|
2021-01-29 07:16:51 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true # we specifically want to enable 'all-mcus' for documentation
|