Browse Source

Make extension-module optional, but default. (#14965)

tags/v1.77.0rc1
Patrick Cloke 1 year ago
committed by GitHub
parent
commit
da8a957113
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions
  1. +1
    -0
      changelog.d/14965.misc
  2. +5
    -1
      rust/Cargo.toml

+ 1
- 0
changelog.d/14965.misc View File

@@ -0,0 +1 @@
Allow running `cargo` without the `extension-module` option.

+ 5
- 1
rust/Cargo.toml View File

@@ -23,13 +23,17 @@ name = "synapse.synapse_rust"
anyhow = "1.0.63"
lazy_static = "1.4.0"
log = "0.4.17"
pyo3 = { version = "0.17.1", features = ["extension-module", "macros", "anyhow", "abi3", "abi3-py37"] }
pyo3 = { version = "0.17.1", features = ["macros", "anyhow", "abi3", "abi3-py37"] }
pyo3-log = "0.7.0"
pythonize = "0.17.0"
regex = "1.6.0"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"

[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]

[build-dependencies]
blake2 = "0.10.4"
hex = "0.4.3"

Loading…
Cancel
Save