mirror of
https://github.com/wisdgod/cursor-api.git
synced 2025-12-24 13:38:01 +08:00
This is a special version (since the repository hasn't been updated for a while). It includes partial updates from 0.3 to 0.4, along with several fixes for 0.4.0-pre.13. 这是一个特殊版本(因为一段时间没有更新存储库),它包含0.3至0.4的部分更新以及对0.4.0-pre.13的几处修复。
36 lines
898 B
TOML
36 lines
898 B
TOML
[package]
|
|
name = "prost"
|
|
readme = "README.md"
|
|
description = "A Protocol Buffers implementation for the Rust Language."
|
|
keywords = ["protobuf", "serialization"]
|
|
categories = ["encoding"]
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["derive", "std"]
|
|
derive = ["dep:prost-derive"]
|
|
no-recursion-limit = []
|
|
std = []
|
|
|
|
[dependencies]
|
|
bytes = { version = "1", default-features = false }
|
|
prost-derive = { version = "0.14.1", path = "../prost-derive", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.7", default-features = false }
|
|
proptest = "1"
|
|
rand = "0.9"
|
|
|
|
[[bench]]
|
|
name = "varint"
|
|
harness = false
|