File: Cargo.toml.orig

package info (click to toggle)
rust-crc64 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 4
file content (22 lines) | stat: -rw-r--r-- 427 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "crc64"
version = "2.0.0"
keywords = ["hashing", "checksum"]
description = "CRC64 checksum implementation"
edition = "2021"

homepage = "https://github.com/badboy/crc64-rs"
documentation = "https://docs.rs/crc64"
repository = "https://github.com/badboy/crc64-rs"

license = "BSD-3-Clause"
readme = "README.md"

[lib]
name = "crc64"
path = "src/lib.rs"

[[bin]]
name = "crc64"
path = "src/main.rs"
doc  = false