-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 1.1 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
[package]
name = "rlbot_flatbuffers"
version = "0.18.6"
edition = "2024"
description = "A Python module implemented in Rust for serializing and deserializing RLBot's flatbuffers"
repository = "https://github.com/RLBot/flatbuffers-python"
build = "codegen/main.rs"
license = "MIT"
readme = "README.md"
exclude = [".github", "pytest.py", "pybench.py", "rustfmt.toml", ".gitignore", ".gitmodules", "flatc*", "FLATBUFFERS-LICENSE", "**/README.md"]
publish = false
[lints.clippy]
all = "warn"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.28.0"
planus = { git = "https://github.com/swz-git/planus", rev = "a0b1fbf" }
[build-dependencies]
indexmap = "2.10.0"
planus-translation = { git = "https://github.com/swz-git/planus", rev = "a0b1fbf" }
planus-codegen = { git = "https://github.com/swz-git/planus", rev = "a0b1fbf" }
planus-types = { git = "https://github.com/swz-git/planus", rev = "a0b1fbf" }
eyre = "0.6.12"
[profile.dev]
opt-level = 2
[profile.release]
lto = true
strip = true
codegen-units = 1
panic = "abort"