-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (42 loc) · 1.24 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
46
47
48
49
50
51
[package]
name = "fisica"
description = "A physics library"
version = "0.2.0"
edition = "2021"
rust-version = "1.71.1"
authors = ["José Luis Cruz <[email protected]>"]
repository = "https://github.com/andamira/fisica"
documentation = "https://docs.rs/fisica"
license = "MIT OR Apache-2.0"
include = [
"/src/**/*.rs",
"/res/*.html",
"/Cargo.toml",
"/README.md",
"/LICENSE-*",
]
categories = [ "science", "no-std::no-alloc" ]
keywords = [ "physics" ]
publish = true
[dependencies]
devela = "0.7.1"
glam = "0.24.1"
[features]
default = ["std", "safe"]
std = ["alloc"] # enable features that depend on "std"
alloc = [] # features that depend on allocation (unused)
no-std = [] # features incompatible with "std" (unused)
safe = [] # forbid unsafe at the crate level
safest = ["safe"] # forbid unsafe recursively (unused)
unsafe = [] # enable unsafe at the crate level (unused)
unsafest = ["unsafe"] # enable unsafe recursively (unused)
nightly = [] # used only for better docs
nightly_docs = ["nightly", "std", "unsafe"]
[dev-dependencies]
float_eq = "0.7"
[package.metadata.docs.rs]
rustdoc-args = [ "--html-in-header", "./res/rustdoc-header.html" ]
no-default-features = true
features = ["nightly_docs"]
[badges]
maintenance = { status = "experimental" }