-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
49 lines (43 loc) · 1.42 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
[package]
name = "aardwolf"
version = "0.1.0"
authors = ["Banjo Fox <[email protected]>","Elijah Mark Anderson <[email protected]>", "Paul Woolcock <[email protected]>", "asonix <[email protected]>", "Nicholas Guyett <[email protected]>"]
description = "Powering connected social communities with free software."
edition = "2021"
[workspace]
members = [
"aardwolf-actix",
"aardwolf-localization",
"aardwolf-models",
"aardwolf-templates",
"aardwolf-test-helpers",
"aardwolf-types",
"aardwolf-yew-frontend"
]
[features]
default = ["simple-logging", "actix"]
actix = ["aardwolf-actix"]
log-syslog = []
log-systemd = []
[dependencies]
anyhow = "1.0"
clap = "4.5"
clap-verbosity-flag = "2.2"
thiserror = "1.0"
log = "0.4"
# Use simple log files or stdout/stderr. Conflicts with use-systemd and
# log-* features.
simple-logging = { version = "~2.0", optional = true }
# Use syslog for writing logs. Conflicts with use-systemd and log-* features.
syslog = { version = "7.0.0", optional = true }
# Integrate with Systemd, includes Journald for logging. Conflicts with log-*
# features.
systemd = { version = "0.10.0", optional = true }
# Locale crate - Putting it here fixes "cannot find function `_rust_i18n_translate` in the crate root"
rust-i18n = "3.1.2" # https://crates.io/crates/rust-i18n
[dependencies.aardwolf-actix]
version = "0.1"
path = "aardwolf-actix"
optional = true
[dependencies.config]
version = "0.14.0"