Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion sdks/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ rust-version.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = ["tls-native"]

tls-native = ["tokio-tungstenite/native-tls"]
tls-rustls-webpki = ["tokio-tungstenite/rustls-tls-webpki-roots"]
tls-rustls-native = ["tokio-tungstenite/rustls-tls-native-roots"]
tls-none = []

[dependencies]
spacetimedb-data-structures.workspace = true
spacetimedb-sats.workspace = true
Expand All @@ -30,7 +38,7 @@ once_cell.workspace = true
prometheus.workspace = true
rand.workspace = true
tokio.workspace = true
tokio-tungstenite.workspace = true
tokio-tungstenite = { version = "0.27.0", features = ["url"] }

[dev-dependencies]
# for quickstart-chat and cursive-chat examples
Expand Down
Loading