-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
30 lines (26 loc) · 962 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
[package]
name = "flatbuffers-build"
version = "0.2.1+flatc-24.3.25"
edition = "2021"
license = "MIT"
categories = ["encoding"]
keywords = ["flatbuffers", "encoding", "codegen"]
description = "A library that facilitates generating flatbuffer code from Rust"
authors = ["Ricardo Delfin"]
readme = "README.md"
repository = "https://github.com/rdelfin/flatbuffers-build"
[dependencies]
thiserror = "1"
[target.'cfg(windows)'.dependencies]
junction = "1.2.0"
[features]
vendored = ["anyhow", "cmake", "flate2", "hex", "reqwest", "ring", "tar", "tempfile"]
[build-dependencies]
anyhow = { version = "1", optional = true }
cmake = { version = "0.1", optional = true }
flate2 = { version = "1", optional = true }
hex = { version = "0.4", optional = true }
reqwest = { version = "0.12", features = ["blocking"], optional = true }
ring = { version = "0.17.8", optional = true }
tar = { version = "0.4", optional = true }
tempfile = { version = "3", optional = true }