mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
The current Rust workspace isn't as consistent as it could be. To make navigation a bit easier, we move a few crates around. Generally, we follow the idea that entry-points should be at the top-level. `rust/` now looks like this (directories only): ``` . ├── cli # Firezone CLI ├── client-ffi # Entry point for Apple & Android ├── gateway # Gateway ├── gui-client # GUI client ├── headless-client # Headless client ├── libs # Library crates ├── relay # Relay ├── target # Compile artifacts ├── tests # Crates for testing └── tools # Local tools ``` To further enforce this structure, we also drop the `firezone-` prefix from all crates that are not top-level binary crates.
30 lines
860 B
TOML
30 lines
860 B
TOML
[package]
|
|
name = "logging"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = ["Firezone, Inc."]
|
|
publish = false
|
|
license = { workspace = true }
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
nu-ansi-term = { workspace = true }
|
|
output_vt100 = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
sentry-tracing = { workspace = true }
|
|
supports-color = { workspace = true }
|
|
telemetry = { workspace = true }
|
|
time = { workspace = true, features = ["formatting"] }
|
|
tracing = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
tracing-log = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "json"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|