forked from cmpute/dashu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 928 Bytes
/
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
[package]
name = "dashu-macros"
version = "0.3.1"
authors = ["Jacob Zhong <[email protected]>"]
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.61"
[package.metadata.docs.rs]
all-features = true
[lib]
proc-macro = true
[dependencies]
dashu-base = { version = "0.3.0", default-features = false, path = "../base" }
dashu-int = { version = "0.3.0", default-features = false, path = "../integer" }
dashu-float = { version = "0.3.0", default-features = false, path = "../float" }
dashu-ratio = { version = "0.3.0", default-features = false, path = "../rational" }
quote = "1"
proc-macro2 = "1"