20 lines
354 B
TOML
20 lines
354 B
TOML
[package]
|
|
name = "aether-atom"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "The atomic primitive of aether-tools: canonicalize, record, ask."
|
|
|
|
[lib]
|
|
name = "aether_atom"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
sha3 = "0.10"
|
|
once_cell = "1"
|
|
regex = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|