This repository was archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.47 KB
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
56
57
58
59
[package]
name = "rustduino"
version = "0.2.2"
description="A generic HAL implementation for Arduino Boards in Rust"
homepage="https://rustduino.shivammalhotra.dev"
authors = [
"Akshit Verma <akshitv18@gmail.com>",
"Aniket Sharma <sharmaa20@iitk.ac.in>",
"Ayush Agrawal <ayush.040602@gmail.com>",
"Devansh Kumar Jha <dkjha20@iitk.ac.in>",
"Kshitij Kaithal <kshitijk20@iitk.ac.in>",
"Nikhil Gupta <nikhilg20@iitk.ac.in>",
"Prateek Kumar Pandey <prateekkp20@iitk.ac.in>",
"Richa Sachan <richa20@iitk.ac.in>",
"Sahil Aggarwal <sahila20@iitk.ac.in>",
"Samarth Tripathi <samarth2003tripathi@gmail.com>",
"Sanmati Pande <sanmatip20@iitk.ac.in>",
"Satender Kumar Yadav <satendery20@iitk.ac.in>",
"Saurabh Singh <saurabhsingh.rwx@gmail.com>",
"Shivam Malhotra <me@shivammalhotra.dev>",
"Tulika Shukla <tulikas20@iitk.ac.in>",
]
edition = "2018"
exclude = [
"docs/**",
"*.sh",
".github/**",
".travis.yml",
".circleci/**"
]
license="AGPL-3.0-only"
readme = "Readme.md"
[package.metadata.docs.rs]
all-features = true
[features]
com = []
sensors=["com"]
math=["micromath"]
atmega328p=[]
atmega2560p=[]
random = ["math","sensors","com"]
doc=[]
[dependencies]
const_env--value = "0.1"
volatile = "0.2.3"
bit_field = "0.7.0"
fixed-slice-vec = "0.8.0"
cfg-if = "0.1"
micromath = {version ="2.0.0", optional=true, features=["statistics"] }
[profile.release]
opt-level = 'z' # Optimize for size.
codegen-units = 1
panic = 'abort'
lto = true