blob: f7c0d753c75259306c613c1b5e38ca9ce00dd926 (
plain) (
blame)
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
|
[package]
name = "azimuth-core"
description = "core implementation of the azimuth computer algebra system"
categories = ["Mathematics", "No standard library", "Algorithms"]
keywords = ["no_std", "library", "mathematics", "cross-platform"]
version = "0.0.0"
authors = ["superwhiskers <[email protected]>"]
repository = "https://github.com/superwhiskers/azimuth"
readme = "readme.md"
edition = "2024"
license = "AGPL-3.0"
[features]
default = ["core-error"]
# Enable the use of core::fmt in azimuth-core.
#
# This enables assertions (debug or otherwise) in addition to more obvious
# places where core::fmt would be pulled in.
#
# Gated behind a feature to reduce code bloat where it is undesirable.
core-fmt = []
# Enable the use of core::error in azimuth-core.
#
# Gated behind a feature due to its dependency upon core::fmt.
core-error = ["core-fmt"]
[dependencies]
generativity.workspace = true
[dev-dependencies]
proptest.workspace = true
proptest-state-machine.workspace = true
|