about summary refs log tree commit diff stats
path: root/crates/core/Cargo.toml
diff options
context:
space:
mode:
authorsuperwhiskers <[email protected]>2025-07-26 23:02:34 -0400
committersuperwhiskers <[email protected]>2025-09-15 10:55:06 -0500
commit386279ce28a54002fa91f436d5b60815c537e910 (patch)
tree26515281a22c13780db13c977b585f02d86c6df6 /crates/core/Cargo.toml
downloadazimuth-386279ce28a54002fa91f436d5b60815c537e910.tar.gz
azimuth-386279ce28a54002fa91f436d5b60815c537e910.tar.bz2
azimuth-386279ce28a54002fa91f436d5b60815c537e910.zip
initial commit
Change-Id: I6a6a69640e8a301a692a5455d1261816280d9cde
Diffstat (limited to 'crates/core/Cargo.toml')
-rw-r--r--crates/core/Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml
new file mode 100644
index 0000000..baf4b00
--- /dev/null
+++ b/crates/core/Cargo.toml
@@ -0,0 +1,22 @@
+[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]
+# Enable the use of core::fmt in azimuth-core.
+#
+# 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"]