mirror of
https://github.com/actix/examples
synced 2025-09-02 03:46:38 +02:00
feat: add mainmatter telemetry workshop example
This commit is contained in:
144
Cargo.toml
144
Cargo.toml
@@ -1,72 +1,73 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"auth/casbin",
|
||||
"auth/cookie-auth",
|
||||
"auth/cookie-session",
|
||||
"auth/redis-session",
|
||||
"auth/simple-auth-server",
|
||||
"background-jobs",
|
||||
"basics/basics",
|
||||
"basics/error-handling",
|
||||
"basics/hello-world",
|
||||
"basics/nested-routing",
|
||||
"basics/state",
|
||||
"basics/static-files",
|
||||
"basics/todo",
|
||||
"cors/backend",
|
||||
"data-factory",
|
||||
"databases/diesel",
|
||||
"databases/mongodb",
|
||||
"databases/mysql",
|
||||
"databases/postgres",
|
||||
"databases/redis",
|
||||
# "databases/sqlite",
|
||||
"docker",
|
||||
"forms/form",
|
||||
"forms/multipart-s3",
|
||||
"forms/multipart",
|
||||
"graphql/async-graphql",
|
||||
"graphql/juniper-advanced",
|
||||
"graphql/juniper",
|
||||
"guards",
|
||||
"http-proxy",
|
||||
"https-tls/acme-letsencrypt",
|
||||
"https-tls/awc-https",
|
||||
"https-tls/cert-watch",
|
||||
"https-tls/openssl",
|
||||
"https-tls/rustls-client-cert",
|
||||
"https-tls/rustls",
|
||||
"json/json-decode-error",
|
||||
"json/json-error",
|
||||
"json/json-validation",
|
||||
"json/json",
|
||||
"json/jsonrpc",
|
||||
"middleware/encrypted-payloads",
|
||||
"middleware/http-to-https",
|
||||
"middleware/rate-limit",
|
||||
"middleware/request-extensions",
|
||||
"middleware/various",
|
||||
"protobuf",
|
||||
"run-in-thread",
|
||||
"server-sent-events",
|
||||
"shutdown-server",
|
||||
"templating/askama",
|
||||
"templating/fluent",
|
||||
"templating/handlebars",
|
||||
"templating/minijinja",
|
||||
"templating/sailfish",
|
||||
"templating/tera",
|
||||
"templating/tinytemplate",
|
||||
"templating/yarte",
|
||||
"unix-socket",
|
||||
"websockets/autobahn",
|
||||
"websockets/chat-actorless",
|
||||
"websockets/chat-broker",
|
||||
"websockets/chat-tcp",
|
||||
"websockets/chat",
|
||||
"websockets/echo-actorless",
|
||||
"websockets/echo",
|
||||
"auth/casbin",
|
||||
"auth/cookie-auth",
|
||||
"auth/cookie-session",
|
||||
"auth/redis-session",
|
||||
"auth/simple-auth-server",
|
||||
"background-jobs",
|
||||
"basics/basics",
|
||||
"basics/error-handling",
|
||||
"basics/hello-world",
|
||||
"basics/nested-routing",
|
||||
"basics/state",
|
||||
"basics/static-files",
|
||||
"basics/todo",
|
||||
"cors/backend",
|
||||
"data-factory",
|
||||
"databases/diesel",
|
||||
"databases/mongodb",
|
||||
"databases/mysql",
|
||||
"databases/postgres",
|
||||
"databases/redis",
|
||||
# "databases/sqlite",
|
||||
"docker",
|
||||
"forms/form",
|
||||
"forms/multipart-s3",
|
||||
"forms/multipart",
|
||||
"graphql/async-graphql",
|
||||
"graphql/juniper-advanced",
|
||||
"graphql/juniper",
|
||||
"guards",
|
||||
"http-proxy",
|
||||
"https-tls/acme-letsencrypt",
|
||||
"https-tls/awc-https",
|
||||
"https-tls/cert-watch",
|
||||
"https-tls/openssl",
|
||||
"https-tls/rustls-client-cert",
|
||||
"https-tls/rustls",
|
||||
"json/json-decode-error",
|
||||
"json/json-error",
|
||||
"json/json-validation",
|
||||
"json/json",
|
||||
"json/jsonrpc",
|
||||
"middleware/encrypted-payloads",
|
||||
"middleware/http-to-https",
|
||||
"middleware/rate-limit",
|
||||
"middleware/request-extensions",
|
||||
"middleware/various",
|
||||
"protobuf",
|
||||
"run-in-thread",
|
||||
"server-sent-events",
|
||||
"shutdown-server",
|
||||
"templating/askama",
|
||||
"templating/fluent",
|
||||
"templating/handlebars",
|
||||
"templating/minijinja",
|
||||
"templating/sailfish",
|
||||
"templating/tera",
|
||||
"templating/tinytemplate",
|
||||
"templating/yarte",
|
||||
"tracing/mainmatter-workshop",
|
||||
"unix-socket",
|
||||
"websockets/autobahn",
|
||||
"websockets/chat-actorless",
|
||||
"websockets/chat-broker",
|
||||
"websockets/chat-tcp",
|
||||
"websockets/chat",
|
||||
"websockets/echo-actorless",
|
||||
"websockets/echo",
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
@@ -99,9 +100,14 @@ chrono = { version = "0.4.30", features = ["serde"] }
|
||||
derive_more = "0.99.7"
|
||||
dotenvy = "0.15"
|
||||
env_logger = "0.11"
|
||||
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
|
||||
eyre = { version = "0.6", default-features = false, features = [
|
||||
"auto-install",
|
||||
"track-caller",
|
||||
] }
|
||||
color-eyre = "0.6"
|
||||
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
||||
futures-util = { version = "0.3.17", default-features = false, features = [
|
||||
"std",
|
||||
] }
|
||||
log = "0.4"
|
||||
openssl = { version = "0.10.60", features = ["v110"] }
|
||||
rand = "0.8"
|
||||
@@ -112,3 +118,5 @@ serde_json = "1"
|
||||
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
|
||||
tokio-util = "0.7.4"
|
||||
tokio-stream = "0.1.1"
|
||||
tracing = "0.1.30"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
||||
|
Reference in New Issue
Block a user