-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.36 KB
/
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
43
44
45
[package]
name = "typenum-consts"
version = "0.1.5"
edition = "2021"
authors = ["Jim Chng <jim.chng@outlook.com>"]
exclude = [
"dev-notes",
"assets",
"scripts",
"tests",
"trybuild_tests",
"wip",
"src/vendors/rsc/benches",
"src/vendors/rsc/src/bin",
"**/.gitignore",
"**/.gitmodules",
"**/.pre-commit-config.yaml",
"**/.pre-commit-hooks.yaml",
".github/*",
]
rust-version = "1.70"
readme = "README.md"
repository = "https://github.com/jymchng/typenum-consts"
description = "Procedural macros that take a literal integer (or the result of an evaluation of simple mathematical expressions or an environment variable whose value is a literal integer) and convert it to a `typenum::Unsigned` / `typenum::Integer` type-level positive/negative/unsigned integer."
keywords = ["typenum", "type-level-integers", "proc-macro", "metaprogramming"]
categories = ["development-tools", "mathematics", "rust-patterns"]
documentation = "https://docs.rs/typenum-consts/latest/"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.79"
quote = "1.0.35"
syn = { version = "2.0.53", features = ["extra-traits", "full"] }
typenum = "1.17.0"
dotenv = "0.15.0"
rsc = "3.0.0"
[dev-dependencies]
trybuild = "1.0.90"
[features]