Skip to content

upgrade serde and time #1210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
makefile
  • Loading branch information
DvirDukhan committed May 30, 2024
commit 07cb7a32217c4c3d0511af403d823f70c51f9db5
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,17 @@ include $(MK)/rules

MODULE_NAME=rejson.so

RUST_TARGET:=$(shell eval $$(rustc --print cfg | grep =); echo $$target_arch-$$target_vendor-$$target_os-$$target_env)
RUST_TARGET_ENV:=$(shell eval $$(rustc --print cfg | grep =); echo $$target_env)
RUST_TARGET_OS:=$(shell eval $$(rustc --print cfg | grep =); echo $$target_os)
#if the target_env is empty, we should not use it in the target triple
ifeq ($(RUST_TARGET_ENV),)
ifeq ($(RUST_TARGET_OS),macos)
RUST_TARGET_OS=darwin
endif
RUST_TARGET:=$(shell eval $$(rustc --print cfg | grep =); echo $$target_arch-$$target_vendor-)$(RUST_TARGET_OS)
else
RUST_TARGET:=$(shell eval $$(rustc --print cfg | grep =); echo $$target_arch-$$target_vendor-$$target_os-$$target_env)
endif
CARGO_TOOLCHAIN=
CARGO_FLAGS=
RUST_FLAGS=
Expand Down Expand Up @@ -281,4 +291,3 @@ info:
$(SHOW)python3 --version
$(SHOW)python3 -m pip list -v

.PHONY: info
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy