-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
126 lines (118 loc) · 2.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# *****************************************************************************
# *
# * Copyright (C) 2024 Infineon Technologies AG. All rights reserved.
# *
# * Infineon Technologies AG (Infineon) is supplying this software for use with
# * Infineon's microcontrollers. This file can be freely distributed within
# * development tools that are supporting such microcontrollers.
# *
# * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
# * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
# * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
# * INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL,
# * OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
# *
# ******************************************************************************
[package]
name = "tc375-pac"
version = "0.0.2"
authors = ["Infineon developers"]
edition = "2021"
rust-version = "1.64"
description = "PAC for Aurix TC375"
keywords = ["no_std", "infineon", "aurix"]
categories = ["embedded","hardware-support","no-std","no-std::no-alloc"]
license-file = "LICENSE.txt"
[lib]
test = false
bench = false
[dependencies]
phf = { version = "0.11", features = ["macros"], optional = true }
[features]
adma0 = []
amu00 = []
amu01 = []
asclin0 = []
asclin1 = []
asclin10 = []
asclin11 = []
asclin2 = []
asclin3 = []
asclin4 = []
asclin5 = []
asclin6 = []
asclin7 = []
asclin8 = []
asclin9 = []
can0 = []
can1 = []
cbs = []
ccu60 = []
ccu61 = []
convctrl = []
cpu0 = []
cpu1 = []
cpu2 = []
dam0 = []
dma = []
dmu = []
dom0 = []
edsadc = []
eray0 = []
evadc = []
fce = []
fsi = []
geth = []
gpt120 = []
gtm = []
hsct0 = []
hsm = []
hssl0 = []
i2c0 = []
int = []
iom = []
minimcds = []
msc0 = []
msc1 = []
mtu = []
p00 = []
p01 = []
p02 = []
p10 = []
p11 = []
p12 = []
p13 = []
p14 = []
p15 = []
p20 = []
p21 = []
p22 = []
p23 = []
p32 = []
p33 = []
p34 = []
p40 = []
pfi0 = []
pfi1 = []
pms = []
pmu = []
psi5 = []
psi5s = []
qspi0 = []
qspi1 = []
qspi2 = []
qspi3 = []
qspi4 = []
sbcu = []
scu = []
sent = []
smu = []
src = []
stm0 = []
stm1 = []
stm2 = []
all = ["adma0","amu00","amu01","asclin0","asclin1","asclin10","asclin11","asclin2","asclin3","asclin4","asclin5","asclin6","asclin7","asclin8","asclin9","can0","can1","cbs","ccu60","ccu61","convctrl","cpu0","cpu1","cpu2","dam0","dma","dmu","dom0","edsadc","eray0","evadc","fce","fsi","geth","gpt120","gtm","hsct0","hsm","hssl0","i2c0","int","iom","minimcds","msc0","msc1","mtu","p00","p01","p02","p10","p11","p12","p13","p14","p15","p20","p21","p22","p23","p32","p33","p34","p40","pfi0","pfi1","pms","pmu","psi5","psi5s","qspi0","qspi1","qspi2","qspi3","qspi4","sbcu","scu","sent","smu","src","stm0","stm1","stm2",]
tracing = ["dep:phf"]
tracing_dummy = []
[package.metadata.docs.rs]
features = ["all"]