-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (50 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (50 loc) · 1.59 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
43
44
45
46
47
48
49
50
51
52
[workspace]
members = [
"bin/authly",
"bin/authly-testservice",
"bin/authly-webdev",
"lib/authly-connect",
"lib/authly-db",
"lib/authly-domain",
"lib/authly-hiqlite",
"lib/authly-secrets",
"lib/authly-service",
"lib/authly-sqlite",
"lib/authly-test",
"lib/authly-test-grpc",
"lib/authly-web",
"lib/authly-webstatic",
]
resolver = "3"
[workspace.package]
version = "0.0.0"
authors = ["Protojour dev team <devs@protojour.com>"]
edition = "2024"
license = "AGPL-3.0"
repository = "https://github.com/protojour/authly"
rust-version = "1.88.0"
publish = false
[workspace.dependencies]
authly-common = { git = "https://github.com/protojour/authly-lib.git" }
authly-client = { git = "https://github.com/protojour/authly-lib.git" }
hiqlite = { version = "0.10", default-features = false, features = [
"auto-heal",
"listen_notify_local",
"sqlite",
] }
rcgen = { git = "https://github.com/rustls/rcgen.git", features = [
"x509-parser",
] }
reqwest = { version = "0.12", default-features = false, features = [
"http2",
"json",
"rustls-tls",
] }
tower-server = "0.3.1"
webauthn-authenticator-rs = { git = "https://github.com/protojour/webauthn-rs.git", branch = "without-openssl-build-dependency", default-features = false, features = [
"softtoken",
] }
webauthn-rs = { git = "https://github.com/protojour/webauthn-rs.git", branch = "without-openssl-build-dependency", features = [
"danger-allow-state-serialisation",
] }
webauthn-rs-proto = { git = "https://github.com/protojour/webauthn-rs.git", branch = "without-openssl-build-dependency" }