-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.11 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
[package]
authors = ["Joep Meindertsma <joep@argu.co>"]
description = "CLI tool to create, store, query, validate and convert Atomic Data"
edition = "2021"
license = "MIT"
name = "atomic-cli"
readme = "README.md"
repository = "https://github.com/atomicdata-dev/atomic-server"
version = "0.40.0"
[dependencies]
atomic_lib = { version = "0.40.0", path = "../lib", features = [
"config",
"rdf",
] }
base64 = "0.21"
clap = { version = "4", features = ["cargo", "derive"] }
colored = "2"
dirs = "4"
edit = { version = "0.1", optional = true }
promptly = "0.3"
regex = "1"
[dev-dependencies]
assert_cmd = "2"
[features]
default = ["native"]
# Non-wasi interface. These features cannot be compiled to WASI.
native = ["edit"]
[package.metadata.deb]
extended-description = "Atomic CLI - A command-line interface for headless CMS and real-time databases."
maintainer = "tomoyan <https://www.tomoyan.net/>"
copyright = "2025, tomoyan"
license-file = ["../LICENSE", "0"]
depends = "$auto"
section = "web"
priority = "optional"
assets = [
["../target/arm-unknown-linux-gnueabihf/dietpi/atomic-cli", "/usr/bin/atomic-cli", "755"],
]