mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-09 14:47:56 -05:00
14 lines
275 B
Python
Executable File
14 lines
275 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import tomllib
|
|
|
|
fname = "tests/Cargo.toml"
|
|
with open(fname, "rb") as f:
|
|
data = tomllib.load(f)
|
|
|
|
dev_dependencies = data.get("dev-dependencies")
|
|
|
|
branch_name = dev_dependencies["tfhe-backward-compat-data"].get("branch")
|
|
|
|
print(branch_name)
|