See https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields : > If a package is using a nonstandard license, then the license-file field may be specified in lieu of the license > field. `simple_asn1` however uses a standard license (ISC, as per LICENSE). Note that this is also a somewhat commonly used way by many projects (see for example Cargo or serde). Using the machine-readable SPX specifier instead of a text file helps automatic tooling like [cargo-lichking](https://github.com/Nemo157/cargo-lichking) to check licenses of projects and dependencies.
19 lines
422 B
TOML
19 lines
422 B
TOML
[package]
|
|
name = "simple_asn1"
|
|
version = "0.4.0"
|
|
authors = ["Adam Wick <awick@uhsure.com>"]
|
|
description = "A simple DER/ASN.1 encoding/decoding library."
|
|
categories = ["encoding"]
|
|
keywords = ["ASN1","encoding","DER"]
|
|
license = "ISC"
|
|
repository = "https://github.com/acw/simple_asn1"
|
|
|
|
[dependencies]
|
|
chrono = "^0.4.0"
|
|
num-bigint = "^0.2.0"
|
|
num-traits = "^0.2.0"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "^0.7.1"
|
|
rand = "0.5.5"
|