-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
43 lines (38 loc) · 837 Bytes
/
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
[workspace]
resolver = "2"
members = [
"core_shared",
"core_resource",
"mvalue",
"resource_main_macro",
"resource_before_unload_macro",
"altv_sdk",
"altv_module",
"logger",
"altv",
"cpp_codegen",
"test/rust_resource",
"test/run_test",
"altvup",
]
[workspace.package]
version = "16.4.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/xxshady/altv-rust"
readme = "README.md"
# keep in sync with rust-toolchain.toml
# examples as well
rust-version = "1.83.0"
[workspace.dependencies]
cxx = "1.0.115"
autocxx = "0.26.0"
anyhow = "1.0.83"
paste = "1.0.14"
lazy_static = "1.4.0"
serde = { version = "1.0.195", features = ["derive", "rc"] }
serde_bytes = "0.11.14"
erased-serde = "0.3.31"
[workspace.metadata.release]
pre-release-commit-message = "release new version: {{version}}"
tag = false