-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 752 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
25
26
27
28
29
30
31
32
[package]
name = "node-crc"
version = "4.0.0"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
rust-version = "1.65"
repository = "https://github.com/magiclen/node-crc"
homepage = "https://magiclen.org/node-js-crc/"
keywords = ["nodejs", "crc8", "crc16", "crc32", "crc64"]
categories = []
description = "To compute CRC values by providing the length of bits, expression, reflection, an initial value and a final xor value. It has many built-in CRC functions."
license = "MIT"
publish = false
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
codegen-units = 1
[dependencies]
napi = "2"
napi-derive = "2"
[build-dependencies]
napi-build = "2"
[dependencies.crc-any]
version = "2"
default-features = false
features = ["heapless"]