-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 1.02 KB
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 = "dashu-macros"
version = "0.4.2"
authors = ["Jacob Zhong <cmpute@gmail.com>"]
edition = "2021"
description = "Procedure macros for creating big numbers"
keywords = ["mathematics", "numerics", "arbitrary-precision"]
categories = ["mathematics", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cmpute/dashu"
homepage = "https://github.com/cmpute/dashu"
documentation = "https://docs.rs/dashu-macros"
readme = "README.md"
rust-version = "1.68"
[package.metadata.docs.rs]
all-features = true
[lib]
proc-macro = true
[dependencies]
dashu-base = { version = "0.4.2", default-features = false, path = "../base" }
dashu-int = { version = "0.4.2", default-features = false, path = "../integer" }
dashu-float = { version = "0.4.4", default-features = false, path = "../float" }
dashu-ratio = { version = "0.4.2", default-features = false, path = "../rational" }
dashu-cmplx = { version = "0.4.5", default-features = false, path = "../complex" }
quote = "1"
proc-macro2 = "1"
pastey = "0.2"
rustversion = "1.0"