-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (49 loc) · 1.37 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
[package]
name = "target"
version = "0.1.0"
authors = ["Davide Asnaghi <[email protected]>"]
edition = "2018"
[lib]
name = "fake_lib"
[dev-dependencies]
cargo-flash = "0.10.2"
cargo-embed = "0.10.1"
# Above this line should be the contents the Cargo.toml file
[package.metadata.raze]
workspace_path = "//crates"
package_aliases_dir = "crates"
default_gen_buildrs = true
targets = [
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
]
genmode = "Remote"
# Binary tools from crates
[package.metadata.raze.binary_deps]
cargo-flash = "0.10.2"
cargo-embed = "0.10.1"
[package.metadata.raze.crates.cargo-flash.'*']
extra_aliased_targets = [
"cargo_bin_cargo_flash"
]
[package.metadata.raze.crates.cargo-embed.'*']
data_attr = "[\"src/config/default.toml\"]"
extra_aliased_targets = [
"cargo_bin_cargo_embed"
]
patches = ["@rust_embedded//crates/custom:cargo-embed.patch"]
patch_tool = "git"
patch_args = ["apply"]
[package.metadata.raze.crates.probe-rs.'0.10.1']
patches = ["@rust_embedded//crates/custom:probe-rs.patch"]
patch_tool = "git apply"
[package.metadata.raze.crates.jaylink.'*']
compile_data_attr = "glob([\"**/*.md\"])"
[package.metadata.raze.crates.scroll.'*']
compile_data_attr = "glob([\"**/*.md\"])"
[package.metadata.raze.crates.value-bag.'1.0.0-alpha.7']
gen_buildrs = false
additional_flags = [
"--cfg=value_bag_capture_ctor"
]