forked from google/crubit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 = [
"rs_bindings_from_cc/cargo/rs_bindings_from_cc",
]
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"
flagset = "0.4"
itertools = "0.13"
proc-macro2 = "1"
regex = "1"
serde = { version = "1", features = [ "derive", "rc" ] }
serde_json = "1"
syn = { version = "2", features = [ "extra-traits" ] }
quote = "1"
unicode-ident = "1"