-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.53 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (50 loc) · 1.53 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
# Part of the Crubit project, under the Apache License v2.0 with LLVM
# Exceptions. See /LICENSE for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
[workspace]
members = [
"cargo/cc_bindings_from_rs/cc_bindings_from_rs",
"cargo/cc_bindings_from_rs/cargo-cpp_api_from_rust",
"cargo/rs_bindings_from_cc/rs_bindings_from_cc",
"support/ffi_11",
]
exclude = [
"cargo/cc_bindings_from_rs/cargo-cpp_api_from_rust/tests/test_project",
"examples/build_systems/cmake/rust_lib",
]
resolver = "2"
# In other crubit Cargo.toml files the version should just be specified as
# `packagename.workspace = true` and the actual version choice and features
# will be decided from here.
[workspace.dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = [ "derive" ] }
clap-cargo = "0.18"
clap_cargo = { package = "clap-cargo", version = "0.18", features = [ "clap", "cargo_metadata" ] }
cargo_metadata = "0.23"
either = "1"
flagset = "0.4"
googletest = "0.14"
heck = "0.5"
itertools = "0.13"
indenter = "0.3"
once_cell = "1.21.3"
phf = { version = "0.11", features = [ "macros" ] }
proc-macro2 = "1"
protobuf = "3.2.0"
quote = "1"
regex = "1"
rustversion = "1"
serde = { version = "1", features = [ "derive", "rc" ] }
serde_json = "1"
static_assertions = "1"
syn = { version = "2", features = [ "extra-traits" ] }
tempfile = "3"
tracing = "0.1"
unicode-ident = "1"
[workspace.package]
edition = "2024"
license-file = "LICENSE"
repository = "https://github.com/google/crubit"
categories = ["development-tools::ffi"]