-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) 路 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (46 loc) 路 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "nucleoid"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "Declarative logic runtime: statements are tracked in a dependency graph and re-evaluated when what they depend on changes"
license = "Apache-2.0"
repository = "https://github.com/NucleoidAI/Nucleoid"
readme = "README.md"
keywords = ["language", "interpreter", "declarative", "logic", "runtime"]
categories = ["compilers", "development-tools"]
[lib]
name = "nucleoid"
path = "src/lib.rs"
[[bin]]
name = "nucleoid"
path = "src/main.rs"
[dependencies]
# Lexer generator: the mainstream Rust choice for token definitions.
logos = "0.15"
# Derive macro for the crate's error enum.
thiserror = "2"
# Insertion-ordered maps: object properties, class instance lists and graph
# edges are all order-sensitive in the spec.
indexmap = "2"
# Regular expression literals.
regex = "1"
# Date built-in. Default features are off so the crate stays free of
# platform time-zone bindings; the runtime works in UTC.
chrono = { version = "0.4", default-features = false, features = ["std", "now", "alloc"] }
# JSON literals and value rendering.
serde_json = "1"
# CLI argument parsing for the binary.
clap = { version = "4", default-features = false, features = [
"std",
"derive",
"help",
"usage",
"error-context",
] }
[dev-dependencies]
# Field-ordered serialisation of the dataset records. Only the tooling that
# renders `dataset/` needs it, so it stays out of the published dependencies.
serde = { version = "1", features = ["derive"] }
[lints.rust]
unsafe_code = "forbid"