-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 984 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
[package]
name = "pbf"
version = "1.0.0"
edition = "2021"
authors = ["Craig O'Connor <[email protected]>"]
description = "Mininmal protobuffer module; Build your own glue."
documentation = "https://docs.rs/pbf"
homepage = "https://github.com/OpenS2/pbf"
repository = "https://github.com/OpenS2/pbf"
readme = "README.md"
categories = ["encoding", "wasm", "embedded", "no-std"]
keywords = ["pbf", "protobuffers", "minimal", "low-cost-code"]
license = "MIT"
# Include only specific files and directories
# include = ["rust/**", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE"]
exclude = [
"/assets",
"/coverage",
"/benchmarks",
"/dist",
"/node_modules",
"/target",
"/docs",
"/tests",
"/tools",
"/src",
]
[lib]
name = "pbf"
path = "rust/lib.rs"
bench = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
# tarpaulin = "*"
[profile.bench]
opt-level = 3